* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.7;
}

header {
  padding: 1rem 5%;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin: 0;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #111;
}

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.7rem;
}

.hero h1,
.hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 560px;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #333;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.hero-stats article span {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
}

.hero-stats article p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.info-section {
  padding: 4rem 0;
  border-top: 1px solid #eee;
}

.alt-bg {
  background: transparent;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.content-grid {
  display: block;
}

.content-grid.reverse {
  direction: ltr;
}

.text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

.text h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.text ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.text li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
  padding-left: 1rem;
  position: relative;
}

.text li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ccc;
}

.feature-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 2rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-list {
  list-style: none;
  padding: 0;
}

.brand-list li {
  margin-bottom: 0.4rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: #444;
}

.brand-list li:last-child {
  border-bottom: none;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-grid article h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-grid article p {
  color: #555;
  font-size: 0.95rem;
}

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

h2 a:hover {
  text-decoration: underline;
}

.brand-list a {
  color: inherit;
  text-decoration: none;
}

.brand-list a:hover {
  text-decoration: underline;
}

.text a:not(.cta-button) {
  color: #111;
}

.text a:hover {
  text-decoration: underline;
}

.map-container {
  position: sticky;
  top: 53px;
  z-index: 100;
  height: 280px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

.map-fullpage {
  height: calc(100vh - 53px);
  margin-top: 53px;
}

.map-legend {
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.map-legend span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.map-legend span:first-child {
  margin-left: 0;
}

footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.8rem;
}

.tab-content {
  animation: fadeIn 0.2s ease;
}

.tab-content.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero h1,
.hero h2 {
    font-size: 1.8rem;
  }

  .map-container {
    height: 200px;
  }
}
