:root {
  --c-blue: #0EA5E9;
  --c-teal: #14B8A6;
  --c-sand: #FEF3C7;
  --c-ink: #1F2937;
  --c-mute: #6B7280;
  --c-bg: #FAFAFA;
  --c-card: #FFFFFF;
  --c-line: #E5E7EB;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .04);
  --grad-hero: linear-gradient(135deg, #E0F2FE 0%, #CCFBF1 60%, #FEF3C7 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-blue); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--c-teal); outline-offset: 2px; border-radius: 4px; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.skip {
  position: absolute; left: -10000px; top: 8px;
  background: var(--c-ink); color: #fff; padding: 8px 12px; border-radius: 8px;
  z-index: 100;
}
.skip:focus { left: 16px; }

.hero {
  padding: clamp(48px, 9vw, 96px) 0 clamp(56px, 9vw, 104px);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.12), transparent 60%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(15,23,42,.06);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  color: var(--c-ink);
}
.brand span { color: var(--c-teal); margin-left: 2px; font-size: 22px; line-height: 0; }

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 24px 0 12px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--c-teal); }
.hero .tagline {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--c-mute);
  max-width: 640px;
  margin: 0 0 28px;
}

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  cursor: pointer;
  font-size: 16px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-small { padding: 10px 16px; font-size: 14px; }

.btn-primary {
  background: var(--c-blue); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #0284C7; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn-ghost:hover { background: #fff; }

.rating-line {
  margin: 28px 0 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.7);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.06);
  font-size: 14px;
}
.stars { color: #F59E0B; letter-spacing: 2px; }

.section {
  padding: clamp(48px, 7vw, 80px) 0;
}
.section-alt { background: #fff; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.section h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
}
.section p { margin: 0 0 14px; max-width: 720px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card p { margin-bottom: 0; color: var(--c-mute); }
.card-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(20,184,166,.12));
  color: var(--c-blue);
  margin-bottom: 14px;
}

.rating-big {
  display: flex; align-items: center; gap: 22px;
  margin: 8px 0 24px;
  padding: 22px;
  background: var(--c-sand);
  border-radius: var(--r-lg);
  border: 1px solid #FDE68A;
  width: fit-content;
}
.rating-num {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1;
}
.rating-num span { font-size: .35em; color: var(--c-mute); margin-left: 4px; }
.stars-big { color: #F59E0B; font-size: 22px; letter-spacing: 4px; }
.rating-meta { color: var(--c-mute); font-size: 14px; margin-top: 4px; }

.chips {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chips li {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--c-ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.contact-grid > div {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.big-link {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.muted { color: var(--c-mute); }
.small { font-size: 13px; }

footer {
  background: var(--c-ink);
  color: #fff;
  padding: 36px 0;
  margin-top: 0;
}
footer a { color: #93C5FD; }
footer p { margin: 0 0 6px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .btn:hover { transform: none; }
  .card:hover { transform: none; }
}
