/* ============================================
   HERO
   ============================================ */

.hero {
  padding-top: calc(var(--nav-height) + var(--sp-2xl));
  padding-bottom: var(--sp-3xl);
  background: linear-gradient(180deg, #FDFBF8 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  z-index: 0;
}
.hero__blob--1 { width: 320px; height: 320px; background: var(--lavender); top: -80px; right: -100px; opacity: 0.4; }
.hero__blob--2 { width: 200px; height: 200px; background: var(--yellow); bottom: 40px; left: -80px; opacity: 0.35; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-3xl); }
}

.hero__content { max-width: 600px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-lg);
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero__eyebrow .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--coral-tint);
  display: flex; align-items: center; justify-content: center;
}

.hero h1 {
  animation: fadeUp 0.7s var(--ease-out) 0.08s both;
  margin-bottom: var(--sp-lg);
}
.hero h1 .underline-coral {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline-coral svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
  height: 12px;
}

.hero__sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  margin-bottom: var(--sp-xl);
  animation: fadeUp 0.7s var(--ease-out) 0.16s both;
  max-width: 540px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
  animation: fadeUp 0.7s var(--ease-out) 0.24s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  animation: fadeUp 0.7s var(--ease-out) 0.32s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__trust-item .num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.hero__trust-item .lbl {
  font-size: var(--fs-caption);
  color: var(--ink-faint);
  line-height: 1.3;
  max-width: 90px;
}

/* Hero visual: collage card stack */
.hero__visual {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__photo-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.hero__photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}

.hero__float-card--1 {
  top: 10%;
  left: -8%;
  animation-delay: 0s;
}
.hero__float-card--2 {
  bottom: 8%;
  right: -10%;
  animation-delay: 1.2s;
}

.hero__float-card .icon-chip { width: 44px; height: 44px; border-radius: var(--radius-sm); }
.hero__float-card .icon-chip svg { width: 22px; height: 22px; }
.hero__float-card .title { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.hero__float-card .sub { font-size: 0.75rem; color: var(--ink-faint); }

@media (max-width: 1023px) {
  .hero__float-card--1 { left: -4%; top: -6%; }
  .hero__float-card--2 { right: -4%; bottom: -6%; }
}

@media (max-width: 480px) {
  .hero__float-card { padding: 8px 12px; gap: 8px; }
  .hero__float-card .icon-chip { width: 36px; height: 36px; }
  .hero__float-card .icon-chip svg { width: 18px; height: 18px; }
  .hero__float-card .title { font-size: 0.78rem; }
  .hero__float-card .sub { font-size: 0.68rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Logo strip */
.logo-strip {
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logo-strip__label {
  text-align: center;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-lg);
}
.logo-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2xl);
  opacity: 0.6;
}
.logo-strip__row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-soft);
}
