:root {
  --yellow: #f6c000;
  --yellow-dark: #e0ab00;
  --black: #0f0f0f;
  --gray-900: #1a1a1a;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-200: #e6e6e6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--gray-900);
  background: #f7f7f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #1f1f1f;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.logo__mark {
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
}

.logo__text {
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav a {
  color: var(--white);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.35rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

.hero {
  background: linear-gradient(135deg, #111 0%, #2b2b2b 100%);
  color: var(--white);
  padding: 4.5rem 0;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero__lead {
  color: #d6d6d6;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.95rem;
  color: #bdbdbd;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn--outline {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn--outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.services,
.benefits,
.process,
.location {
  padding: 4rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

.card--featured {
  border: 2px solid var(--yellow);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.card h3 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.card li::before {
  content: "•";
  color: var(--yellow);
  margin-right: 0.5rem;
}

.link {
  color: var(--gray-900);
  font-weight: 600;
}

.disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-500);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.benefit h3 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--yellow);
}

.step__number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.location__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hours {
  margin: 1rem 0 1.5rem;
}

.cta {
  padding: 3.5rem 0;
  background: var(--black);
  color: var(--white);
}

.cta__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  background: #0b0b0b;
  color: #cfcfcf;
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3,
.footer h4 {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
}

.footer__bottom {
  border-top: 1px solid #222;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: #bdbdbd;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 1rem;
    background: var(--black);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: none;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
  }
}
