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

:root {
  --blue: #0ea5e9;
  --blue-dark: #0c4a6e;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
}

.topbar__inner {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.topbar a:hover { color: #fff; text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--blue-dark);
  margin-right: auto;
}

.logo span { font-weight: 600; color: var(--muted); font-size: 0.875rem; }

.nav { display: none; gap: 1.5rem; font-size: 0.9375rem; font-weight: 500; }
.nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(14,165,233,0.35); }
.btn--outline { border-color: #cbd5e1; background: #fff; }
.btn--white { background: #fff; color: var(--blue-dark); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 55%, #fff 100%);
  padding: 3rem 0 2.5rem;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--blue-dark);
}

.hero__lead { color: var(--muted); max-width: 52ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__visual { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__card {
  flex: 1;
  min-width: 140px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}

.hero__card strong { display: block; font-size: 1.75rem; color: var(--blue); }
.hero__card span { font-size: 0.875rem; color: var(--muted); }
.hero__card--alt strong { color: var(--blue-dark); }

.brands {
  border-block: 1px solid #e2e8f0;
  padding: 1.25rem 0;
  background: #fff;
}

.brands__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.brands__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-weight: 700;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg); }

.section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.75rem;
  color: var(--blue-dark);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card__icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.card p { color: var(--muted); font-size: 0.9375rem; }

.about {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about p { color: var(--muted); margin-bottom: 1rem; }

.about__list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about__list li::before {
  content: "✓ ";
  color: var(--blue);
  font-weight: 700;
}

.about__facts {
  display: grid;
  gap: 0.75rem;
}

.about__facts div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__facts span { color: var(--muted); font-size: 0.875rem; }

.cta {
  background: linear-gradient(135deg, var(--blue-dark), #0369a1);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.5rem; }
.cta p { opacity: 0.9; margin-bottom: 1.25rem; }

.contact__grid {
  display: grid;
  gap: 2rem;
}

.contact address {
  font-style: normal;
  color: var(--muted);
  margin: 1rem 0;
  line-height: 1.7;
}

.contact__meta a { color: var(--blue); font-weight: 600; }
.contact__hours { color: var(--muted); font-size: 0.9375rem; margin-top: 0.75rem; }

.contact__form {
  display: grid;
  gap: 0.875rem;
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.contact__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact__form input,
.contact__form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.form-note { color: #059669; font-size: 0.875rem; text-align: center; }

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1.4fr 0.8fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .header__inner .btn--sm:not(.menu-btn) { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
  }
  .header__inner { position: relative; flex-wrap: wrap; }
}
