/* hero.css */

#home {
  position: relative;
  background: #ffffff;
  padding: 64px 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  #home {
    padding: 64px 48px;
  }
}

@media (min-width: 1024px) {
  #home {
    padding: 96px;
  }
}

/* Background glows */
.hero-glow-top-right {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(219, 234, 254, 0.6);
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-bottom-left {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.8);
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

/* Grid layout */
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 55% 45%;
    gap: 32px;
  }
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 1024px) {
  .hero-left {
    align-items: flex-start;
    text-align: left;
  }
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-eyebrow {
    justify-content: flex-start;
  }
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--blue-600);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-600);
}

/* Heading */
.hero-heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-heading {
    font-size: 4rem;
  }
}

.hero-heading .accent-blue {
  color: var(--blue-600);
  font-weight: 600;
}

.hero-heading .accent-emerald {
  color: var(--emerald-500);
  font-weight: 600;
}

/* Description */
.hero-description {
  max-width: 576px;
  font-size: 16px;
  color: var(--slate-500);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 17px;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: var(--slate-900);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .hero-btn-primary {
    width: auto;
  }
}

.hero-btn-primary:hover {
  background-color: var(--slate-800);
}

.hero-btn-primary .btn-arrow {
  transition: transform 0.2s ease;
}

.hero-btn-primary:hover .btn-arrow {
  transform: translateX(2px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: #ffffff;
  color: var(--slate-800);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
  cursor: pointer;
}

@media (min-width: 640px) {
  .hero-btn-secondary {
    width: auto;
  }
}

.hero-btn-secondary:hover {
  background-color: var(--slate-50);
}

.hero-btn-secondary .btn-arrow {
  transition: transform 0.2s ease;
}

.hero-btn-secondary:hover .btn-arrow {
  transform: translateX(2px);
}

/* Trust cards */
.hero-trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 672px;
}

@media (min-width: 640px) {
  .hero-trust-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hero-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-icon.blue {
  background-color: var(--blue-50);
  color: var(--blue-600);
}

.hero-trust-icon.emerald {
  background-color: var(--emerald-50);
  color: var(--emerald-600);
}

.hero-trust-icon.indigo {
  background-color: #EEF2FF;
  color: var(--indigo-600);
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
}

.hero-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.2;
}

.hero-trust-sublabel {
  font-size: 11px;
  color: var(--slate-400);
  line-height: 1.3;
}

/* Right column */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: rgba(191, 219, 254, 0.5);
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    max-width: none;
  }
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
