/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f0f0ef;
  color: #111;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.nav__logo-img {
  height: 72px;
  width: auto;
  display: block;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn--dark {
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
}

.btn--dark:hover { opacity: 0.82; }

.btn--outline {
  background: transparent;
  color: #111;
  border: 1.5px solid #ccc;
}

.btn--outline:hover { border-color: #888; }

.arrow { font-style: normal; font-size: 0.8rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 62px;
  background: rgba(240, 240, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav__logo svg { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.875rem;
  color: #444;
  font-weight: 400;
  transition: color 0.15s;
}

.nav__links a:hover { color: #111; }

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 62px);
  padding: 64px 48px 40px;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 12px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #444;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 28px;
  width: fit-content;
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 24px;
}

.hero__heading em {
  font-style: italic;
  color: #888;
}

.hero__sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

/* Trust section */
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust__label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.trust__logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.trust__logo svg { flex-shrink: 0; }

/* Right column — visual */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  min-width: 0; /* grid overflow fix */
}

.hero__visual {
  width: 100%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 1440px;
  margin: 0 auto;
}

.card {
  background: #f0f0ef;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 200px;
  transition: background 0.2s ease;
  position: relative;
}

.card:hover { background: #ebebea; }

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card__body h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #111;
}

.card__body p {
  font-size: 0.8625rem;
  line-height: 1.65;
  color: #666;
  font-weight: 400;
}

.card__arrow {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.875rem;
  color: #888;
  transition: color 0.15s, transform 0.15s;
}

.card:hover .card__arrow {
  color: #111;
  transform: translate(2px, -2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 28px 40px;
    min-height: auto;
    gap: 48px;
  }

  .hero__right {
    order: -1;
  }

  .hero__visual { max-width: 380px; margin: 0 auto; }

  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav { padding: 0 20px; }

  .hero { padding: 36px 20px 32px; }

  .hero__heading { font-size: 2.4rem; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .trust__logos { gap: 16px; }

  .cards {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .card { padding: 28px 20px; }
}
