:root {
  --primary: #0a84ff;
  --secondary: #1c1c1e;
  --accent: #30d158;
  --bg-light: #f5f5f7;
  --text-primary: #111111;
  --text-secondary: #6e6e73;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

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

.service-slider-bar {
  padding: 1rem 0;
  background: #e9e9e9;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.service-slider-track {
  display: flex;
  gap: 1.9rem;
  overflow-x: auto;
  padding: 0.5rem 0.2rem 0.7rem;
  scrollbar-width: none;
}

.service-slider-track::-webkit-scrollbar {
  display: none;
}

.service-chip {
  flex: 0 0 auto;
  width: 185px;
  text-decoration: none;
  color: var(--text-secondary);
  text-align: center;
  position: relative;
}

.service-chip-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #2b2b2f;
  z-index: 1;
}

.service-chip-icon .bi-tablet {
  display: inline-block;
  transform: scaleX(1.16);
}

.service-chip-icon::before {
  content: "";
  position: absolute;
  inset: 7px -4px;
  border-radius: 999px;
  background: #eee13a;
  opacity: 0;
  z-index: -1;
  transform: scale(0.72);
  transition: opacity 240ms ease, transform 240ms ease;
}

.service-chip-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-chip:hover .service-chip-icon::before,
.service-chip:focus-visible .service-chip-icon::before {
  opacity: 1;
  transform: scale(1);
}

.service-chip:hover,
.service-chip:focus-visible {
  color: var(--text-primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 247, 0.58);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  text-decoration: none;
}

.logo-image {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a,
.nav-links button.nav-text-btn {
  text-decoration: none;
  color: rgba(17, 17, 17, 0.74);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links button.nav-text-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button.nav-text-btn:hover {
  color: var(--primary);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: #0d3f1d;
  background: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-phone:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--secondary);
  margin: 6px auto;
  transition: transform 0.2s ease;
}

.hero {
  padding-top: 3.6rem;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2.2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1.1;
  margin: 0.45rem 0 1rem;
  letter-spacing: -0.03em;
}

.hero-title {
  position: relative;
  display: inline-block;
  text-align: left;
}

.hero-highlight {
  display: inline-block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding: 0.08em 0.36em 0.12em;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  inset: 0.12em -0.12em 0.06em;
  z-index: -1;
  background: #eee13a;
  border-radius: 999px;
  animation: hero-highlight-slide 6s ease-in-out infinite;
}

.hero-title-line {
  display: inline-block;
}

.hero-subtext {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  margin-top: 0;
}

.hero-title.is-changing,
.hero-subtext.is-changing {
  animation: heroTextSwap 620ms ease;
}

.hero-title.is-leaving,
.hero-subtext.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 320ms ease, transform 320ms ease;
}

@keyframes heroTextSwap {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.hero-trust-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@keyframes hero-highlight-slide {
  0%,
  100% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(8px);
  }
}

.hero-media {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.hero-fade-slider {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  min-height: 520px;
}

.hero-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity 520ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero-fade-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  z-index: 1;
}

.hero-fade-media {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  background: #ffffff;
  border-radius: 18px;
}

.hero-fade-media-contain {
  object-fit: contain;
  background: #f7f8fb;
}

.hero-fade-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(6px);
}

.hero-fade-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hero-fade-dot:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.7);
}

.hero-fade-dot.is-active {
  background: var(--white);
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  letter-spacing: -0.02em;
}

.card-grid,
.feature-grid,
.pricing-grid,
.review-grid {
  display: grid;
  gap: 1rem;
}

.card,
.feature,
.price-card,
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 10px 25px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.feature:hover,
.price-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.repairs-layout {
  display: grid;
  gap: 1.4rem;
}

.repairs-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.08);
}

.repairs-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.repairs-list {
  display: grid;
  gap: 0.8rem;
}

.repair-item {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.repair-item:hover {
  border-color: rgba(10, 132, 255, 0.26);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

.repair-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(10, 132, 255, 0.12);
  color: var(--primary);
  font-size: 1.1rem;
}

.repair-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.repair-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  background: rgba(10, 132, 255, 0.12);
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.25rem 0;
}

.stars {
  color: #ffb400;
  letter-spacing: 0.1em;
  margin: 0;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.cta-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.cta-panel {
  text-align: center;
  background: var(--secondary);
  color: var(--white);
  border-radius: 26px;
  padding: 2.5rem 1.2rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  padding: 0.72rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(10, 132, 255, 0.35);
}

.btn-secondary {
  background: rgba(10, 132, 255, 0.08);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: #073d18;
}

.btn-small {
  padding: 0.55rem 0.95rem;
}

.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.6rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .repairs-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

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

  .feature-grid,
  .pricing-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .pricing-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .logo-image {
    height: 46px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle span {
    background: var(--secondary);
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 4%;
    right: 4%;
    border-radius: 16px;
    background: #262629;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a,
  .nav-links button.nav-text-btn {
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-phone {
    display: none;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-content,
  .hero-media {
    width: 100%;
    min-width: 0;
  }

  .hero-title {
    display: block;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-highlight {
    white-space: normal;
  }

  .hero-subtext {
    font-size: 1.06rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-trust-list {
    gap: 0.7rem;
    font-size: 0.92rem;
  }

  .hero-fade-slider {
    max-width: 100%;
    height: min(78vw, 360px);
    min-height: 240px;
  }

  .hero-fade-media {
    height: 100%;
  }

  .service-chip {
    width: 145px;
  }

  .repairs-media img {
    min-height: 220px;
  }
}
