/* === Design Tokens === */
:root {
  --color-primary: #3B82F6;
  --color-primary-dark: #2563EB;
  --color-primary-light: #DBEAFE;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-text: #1E293B;
  --color-text-light: #64748B;
  --color-bg: #ffffff;
  --color-bg-alt: #F1F5F9;
  --color-bg-dark: #1E293B;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: 200ms ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* === Layout === */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.section__sub {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}
.btn--white {
  background: #fff;
  color: var(--color-primary);
}
.btn--white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header--scrolled {
  padding: 0.5rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.header__logo:hover { color: var(--color-primary); }
.header__phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: auto;
}
.header__phone:hover { color: var(--color-primary); }
.nav { display: none; }
.nav__list {
  display: flex;
  gap: 1.5rem;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.25rem 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--color-primary); }
.nav__link:hover::after { width: 100%; }
.header__cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav--open {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.nav--open .nav__list {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav--open .nav__link {
  font-size: 1.25rem;
}

/* Desktop Header */
@media (min-width: 768px) {
  .header__phone { display: flex; }
  .nav {
    display: flex;
    margin-left: auto;
  }
  .header__phone { margin-left: 0; }
  .header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
  color: #fff;
  padding: 6rem 0 4rem;
}
.hero__inner {
  max-width: 800px;
}
.hero__heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.hero__sub strong { color: #fff; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__badges svg { color: var(--color-success); flex-shrink: 0; }
.hero .btn--outline {
  background: #fff;
  color: #0f172a;
  border-color: transparent;
}
.hero .btn--outline:hover {
  background: #fef3c7;
  color: #0f172a;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.hero__area {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 1024px) {
  .hero__heading { font-size: 3.5rem; }
}

/* === Social Proof Bar === */
.proof-bar {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
.proof-bar__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

/* === Why Rent === */
.why-rent__grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.why-rent__col {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.why-rent__col--problem {
  border-left: 4px solid var(--color-danger);
}
.why-rent__col--solution {
  border-left: 4px solid var(--color-success);
}
.why-rent__col-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.why-rent__col--problem .why-rent__col-heading { color: var(--color-danger); }
.why-rent__col--solution .why-rent__col-heading { color: var(--color-success); }
.why-rent__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-rent__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.why-rent__list svg { flex-shrink: 0; margin-top: 3px; }
.why-rent__col--problem .why-rent__list svg { color: var(--color-danger); }
@media (min-width: 768px) {
  .why-rent__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* === How It Works === */
.steps {
  display: grid;
  gap: 2rem;
  text-align: center;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.step__icon {
  display: block;
  margin: 0 auto 1rem;
}
.step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step__desc {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* === Pricing === */
.pricing__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.pricing__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  order: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing__card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing__card--featured {
  order: 0;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.pricing__price {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
.pricing__amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
}
.pricing__features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.pricing__features svg { flex-shrink: 0; }
.pricing__cta { width: 100%; }
.pricing__help {
  text-align: center;
  color: var(--color-text-light);
  margin-top: 2rem;
  font-size: 0.9375rem;
}
.pricing__help a { font-weight: 600; }

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .pricing__card--featured {
    grid-column: auto;
    max-width: none;
  }
  .pricing__card:first-child { order: 0; }
  .pricing__card--featured { order: 0; }
  .pricing__card:last-child { order: 0; }
}

/* === Testimonials === */
.testimonials__grid {
  display: grid;
  gap: 2rem;
}
.testimonial {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
}
.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.testimonial__author {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

/* === Service Areas === */
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.areas__tag {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.areas__note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}
.areas__note a { font-weight: 600; }

/* === FAQ === */
.faq__list {
  max-width: 740px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid #e5e7eb;
}
.faq__item:first-child {
  border-top: 1px solid #e5e7eb;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-light);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}
.faq__item[open] .faq__question::after {
  content: '\2212';
}
.faq__answer {
  padding-bottom: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* === Final CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.final-cta__heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.final-cta__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* === Footer === */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer__social-link:hover { color: #fff; }
.footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__contact {
  font-size: 0.9375rem;
  line-height: 1.8;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* === Floating Mobile CTA === */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.mobile-cta--visible {
  transform: translateY(0);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 48px;
}
.mobile-cta__btn--call {
  background: var(--color-bg-alt);
  color: var(--color-text);
  margin-right: 0.5rem;
}
.mobile-cta__btn--schedule {
  background: var(--color-primary);
  color: #fff;
}
@media (min-width: 768px) {
  .mobile-cta { display: none !important; }
}

/* === Focus Styles === */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline-offset: 2px;
}

/* === Print === */
@media print {
  .header, .mobile-cta, .final-cta { display: none; }
  .hero { min-height: auto; background: #fff; color: var(--color-text); padding: 2rem 0; }
  .section { padding: 2rem 0; }
}
