:root {
  --bg: #1c242f;
  --bg-deep: #151b24;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --text: #0f1720;
  --muted: #687383;
  --line: #dde4ed;
  --card: #ffffff;
  --soft: #f4f7fb;
  --star: #fbbf24;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(28, 36, 47, 0.88);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), transparent 42%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.96), rgba(194, 65, 12, 0.96));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 7px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 19px;
  line-height: 1;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.service-area {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: var(--radius);
  border: 0;
  padding: 0 28px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-large {
  min-height: 56px;
  padding: 0 38px;
  border-radius: 12px;
  font-size: 18px;
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline:hover {
  color: white;
  background: var(--primary);
}

.btn-dark {
  color: white;
  background: var(--bg);
  box-shadow: 0 18px 35px rgba(7, 15, 24, 0.26);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: -80px;
  padding: 150px 0 72px;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(115deg, rgba(28, 36, 47, 0.98) 0%, rgba(28, 36, 47, 0.92) 43%, rgba(28, 36, 47, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 3vw, 28px);
}

.rating {
  margin: 28px 0 36px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.stars {
  color: var(--star);
  font-size: 26px;
  letter-spacing: 2px;
}

.rating p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.rating strong {
  color: white;
}

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

.feature-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.feature-icon,
.round-icon,
.service-card span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.12);
  border-radius: var(--radius);
  font-weight: 900;
}

.feature-icon {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  font-weight: 700;
}

.section-light,
.section-white,
.section-muted {
  padding: 84px 0;
}

.section-light,
.section-white {
  background: white;
}

.section-muted {
  background: var(--soft);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.intro h2,
.section-heading h2,
.cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
}

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

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

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

.service-card,
.why-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(19, 30, 44, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 16px 34px rgba(19, 30, 44, 0.08);
}

.service-card {
  min-height: 172px;
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 26px 20px;
  text-align: center;
}

.service-card span,
.round-icon {
  width: 56px;
  height: 56px;
  font-size: 28px;
}

.service-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.center {
  margin-top: 42px;
  text-align: center;
}

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

.why-card {
  padding: 34px 28px;
  text-align: center;
}

.round-icon {
  margin: 0 auto 22px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.why-card p {
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  position: relative;
  color: white;
  background: linear-gradient(145deg, var(--primary), #c2410c);
  padding: 82px 0;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 800;
}

.cta h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 7vw, 66px);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 34px;
}

.footer {
  color: white;
  background: var(--bg);
  padding-bottom: 30px;
}

.footer-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-strip-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-strip a {
  color: var(--primary);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 70px;
  padding: 48px 0;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-bottom p:first-child {
  max-width: 930px;
  margin: 0 auto 16px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.mobile-call-bar {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(115deg, rgba(28, 36, 47, 0.98), rgba(28, 36, 47, 0.94) 58%, rgba(28, 36, 47, 0.82)),
    url("hero-appliance-repair.png") center / cover no-repeat;
  padding: 120px 0 84px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.02;
  color: white;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.65;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-section {
  padding: 76px 0;
  background: white;
}

.page-section.alt {
  background: var(--soft);
}

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

.page-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(19, 30, 44, 0.06);
}

.page-card h3 {
  margin-bottom: 10px;
}

.page-card p,
.page-copy p,
.page-list li {
  color: var(--muted);
  line-height: 1.7;
}

.page-list {
  margin: 0;
  padding-left: 20px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 12px;
  background: var(--bg);
  color: white;
  padding: 34px;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .service-area {
    display: none;
  }

  .feature-grid,
  .service-grid,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 116px;
  }

  .nav {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span,
  .nav-call span:last-child {
    display: none;
  }

  .nav-call {
    width: 46px;
    min-height: 46px;
    padding: 0;
    overflow: hidden;
  }

  .hero {
    min-height: 760px;
    margin-top: -72px;
    padding: 128px 0 54px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .btn-large {
    width: 100%;
    padding: 0 18px;
    font-size: 16px;
  }

  .feature-grid,
  .service-grid,
  .footer-links,
  .page-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 92px 0 64px;
  }

  .page-actions .btn {
    width: 100%;
  }

  .section-light,
  .section-white,
  .section-muted {
    padding: 62px 0;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-strip-inner {
    flex-direction: column;
    gap: 10px;
    min-height: 92px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 8px;
    padding: 12px 16px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 32px rgba(15, 23, 32, 0.14);
  }

  .mobile-call-bar .btn {
    width: 100%;
    min-height: 54px;
  }

  .mobile-call-bar div {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-call-bar a:not(.btn) {
    color: var(--primary);
  }
}
