:root {
  --dark: #111827;
  --grey: #6b7280;
  --light: #f3f4f6;
  --white: #ffffff;
  --accent: #2563eb;
  --accent-contact-background: #194ab6;
  --accent-dark: #1d4ed8;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 350px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

nav a {
  color: var(--grey);
  font-weight: 600;
}

nav a:hover {
  color: var(--dark);
}

.nav-button {
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

/* HERO */

.hero {
  padding: 80px 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.78)),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 12px;
}

.hero .eyebrow {
  color: #93c5fd;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.25rem;
}

.hero-subtext {
  font-size: 1.15rem;
  max-width: 650px;
  color: #e5e7eb;
  margin-bottom: 28px;
}

.notice-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 600;
  margin: 22px 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--dark);
}

.button.secondary:hover {
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
  margin-top: 14px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card {
  background: var(--white);
  color: var(--dark);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.hero-card span {
  font-weight: 800;
  color: var(--accent);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

/* SECTIONS */

.section {
  padding: 72px 0;
}

.section-light {
  background: var(--light);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--grey);
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--grey);
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--accent);
  transform: translateY(-8px);
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.price {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 8px 0 0;
}

.time {
  color: var(--grey);
  margin-top: 0;
}

.price-card ul {
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 8px;
}

.extras {
  margin-top: 28px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
}

.extras-grid p {
  margin: 0;
}

/* DEALER */

.dealer-box {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  background: var(--dark);
  color: var(--white);
  padding: 42px;
  border-radius: var(--radius);
}

.dealer-box p {
  color: #d1d5db;
}

.dealer-list {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius);
}

.dealer-list ul {
  margin: 0;
  padding-left: 20px;
}

/* GALLERY */

.gallery-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.gallery-section:last-child {
  margin-bottom: 0;
}

.gallery-section h3 {
  margin-bottom: 18px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

.gallery-pair,
.gallery-pair.gallery-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
}

.gallery-placeholder {
  width: 100%;
  height: 340px; /* change this if you want taller/shorter */
  border-radius: 14px;
  background: #d1d5db;
  overflow: hidden;
  display: block;
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .gallery-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 18px;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder {
    height: 260px;
  }

  .gallery-four {
    grid-template-columns: 1fr;
  }
}

/* AREAS */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--grey);
  margin-bottom: 0;
}

/* CONTACT */

.contact-section {
  background: var(--accent-contact-background);
  color: var(--white);
}

.contact-box {
  text-align: center;
  max-width: 760px;
}

.contact-box p {
  color: #dbeafe;
}

.center {
  justify-content: center;
}

/* FOOTER */

.site-footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .pricing-grid,
  .dealer-box,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  nav {
    display: none;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .logo img {
    width: 210px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 54px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding: 18px;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder {
    min-height: 190px;
  }

  .gallery-placeholder {
    min-height: 190px;
  }

  .dealer-box {
    padding: 28px;
  }

  .footer-grid {
    flex-direction: column;
  }
}