:root {
  --background: #f8fbfd;
  --foreground: #14213d;
  --card: #ffffff;
  --muted: #eef4f8;
  --muted-foreground: #5b6b7d;
  --border: #e2eaf0;
  --primary: #1f8aa8;
  --primary-foreground: #ffffff;
  --primary-glow: #41b8c9;
  --accent: #f5c66e;
  --accent-fg: #2a2410;
  --gold: #f3c349;
  --silver: #c7ccd1;
  --bronze: #c47a3a;
  --radius: 8px;
  --shadow-card: 0 4px 20px -8px rgba(31, 138, 168, 0.18);
  --shadow-elevated: 0 20px 50px -20px rgba(20, 33, 61, 0.35);
  --gradient-hero: linear-gradient(135deg, #1f8aa8 0%, #2ca9b8 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 138, 168, 0.35);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
svg { display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1rem; }
.container-narrow { max-width: 760px; }
.container-copy { max-width: 920px; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s ease, opacity .15s ease, background .15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { min-height: 38px; padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { min-height: 50px; padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-card); }
.btn-primary:hover { opacity: 0.92; }
.btn-white { background: #fff; color: var(--primary); box-shadow: var(--shadow-elevated); }
.btn-white:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 253, 0.92);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  min-width: 0;
}
.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(31, 138, 168, 0.18);
  box-shadow: 0 8px 18px -12px rgba(20, 33, 61, 0.45);
  display: grid;
  place-items: center;
}
.brand-logo svg {
  width: 25px;
  height: 25px;
  fill: rgba(31, 138, 168, 0.14);
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-links { display: none; gap: 1.15rem; font-weight: 600; font-size: 0.9rem; color: var(--foreground); }
.nav-links a:hover { color: var(--primary); }
@media (min-width: 900px) { .nav-links { display: flex; } .brand { font-size: 1.08rem; } }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, white 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; padding: 4rem 1rem; }
@media (min-width: 768px) { .hero-content { padding: 6rem 1rem; } }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 56rem;
}
.hero-lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.92);
  max-width: 44rem;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
  .hero-lead { font-size: 1.25rem; }
}
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 34rem;
}
.hero-stats > div {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}
.stat-n { font-size: 1.55rem; font-weight: 800; line-height: 1.1; }
.stat-l { font-size: 0.78rem; color: rgba(255,255,255,0.84); }
@media (min-width: 768px) {
  .stat-n { font-size: 1.95rem; }
  .stat-l { font-size: 0.9rem; }
}

.section { padding: 4rem 0; }
.section-muted { background: rgba(238, 244, 248, 0.72); }
.section-head {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}
.section-head p { margin-top: 1rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .section-head h2 { font-size: 2.55rem; } }
.kicker {
  display: inline-block;
  background: rgba(31, 138, 168, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(31, 138, 168, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-feature h3 { font-size: 1.125rem; font-weight: 800; }
.card-feature p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted-foreground); }

.card-service {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card-service:hover {
  border-color: rgba(31, 138, 168, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.service-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--muted);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content { padding: 1.25rem; }
.card-service h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.card-service p { font-size: 0.92rem; color: var(--muted-foreground); }

.ranking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rank-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}
.rank-item:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}
.rank-inner { display: flex; flex-direction: column; }
@media (min-width: 768px) { .rank-inner { flex-direction: row; } }
.rank-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  flex-direction: row;
}
@media (min-width: 768px) {
  .rank-num {
    width: 124px;
    padding: 2rem 1rem;
    flex-direction: column;
    flex: 0 0 124px;
  }
}
.rank-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  opacity: 0.82;
}
.rank-big {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 768px) { .rank-big { font-size: 3.75rem; } }
.rank-gold { background: var(--gold); color: #2a2410; }
.rank-silver { background: var(--silver); color: #2a2a2a; }
.rank-bronze { background: var(--bronze); color: #fff; }
.rank-default { background: var(--muted); color: var(--foreground); }
.rank-body { flex: 1; padding: 1.5rem; }
@media (min-width: 768px) { .rank-body { padding: 2rem; } }
.rank-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.rank-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(245, 198, 110, 0.3);
  color: var(--accent-fg);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.5rem;
}
.rank-name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.22;
}
@media (min-width: 768px) { .rank-name { font-size: 1.5rem; } }
.rank-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(20, 33, 61, 0.05);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}
.rank-rating .star { color: var(--gold); line-height: 1; }
.rank-rating .reviews { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 600; }
.rank-desc { font-size: 0.96rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.rank-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.rank-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(31, 138, 168, 0.08);
  color: var(--primary);
  border: 1px solid rgba(31, 138, 168, 0.15);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.rank-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  font-size: 0.9rem;
}
@media (min-width: 700px) { .rank-meta { grid-template-columns: 1fr 1fr; } }
.rank-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}
.meta-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--primary);
  margin-top: 0.15rem;
}
.meta-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary span { transform: rotate(45deg); }
.faq p { margin-top: 0.75rem; font-size: 0.92rem; color: var(--muted-foreground); }

.seo-copy {
  background: #ffffff;
}
.copy-flow {
  color: #304156;
  font-size: 1rem;
}
.copy-flow p + p,
.copy-flow p + h3,
.copy-flow h3 + p {
  margin-top: 1rem;
}
.copy-flow h3 {
  color: var(--foreground);
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-top: 2rem;
}
.copy-flow strong { color: var(--foreground); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.location-copy,
.map-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location-copy {
  padding: 1.5rem;
}
.location-copy h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.location-copy p { color: var(--muted-foreground); }
.nap-card {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-style: normal;
}
.nap-card strong { color: var(--foreground); }
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.cta-final { padding: 5rem 0; }
.clock-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.clock-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-final h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.16;
}
@media (min-width: 768px) { .cta-final h2 { font-size: 2.55rem; } }
.cta-final > .container > p {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted-foreground);
}
.cta-final .btn { margin-top: 2rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.site-footer p + p { margin-top: 0.5rem; }
.site-footer a:hover { color: var(--primary); }

@media (max-width: 520px) {
  .nav-row { gap: 0.6rem; }
  .brand { font-size: 0.95rem; }
  .brand-logo { width: 34px; height: 34px; flex-basis: 34px; }
  .brand-logo svg { width: 22px; height: 22px; }
  .btn-sm { padding: 0.45rem 0.75rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-stats { grid-template-columns: 1fr; max-width: 22rem; }
  .section { padding: 3rem 0; }
  .rank-rating { width: 100%; justify-content: center; }
}
