/* ── Homepage Consultancy Sections (Univista-inspired, Silverstone brand) ── */

/* About intro */
.home-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.home-about-intro__image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(46, 49, 146, 0.14);
}

.home-about-intro__image {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.home-about-intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #2E3192 0%, #192071 100%);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(0, 174, 239, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.home-about-intro__badge-value {
  display: block;
  font-family: var(--font-heading, inherit);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #00AEEF;
}

.home-about-intro__badge-label {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.35rem;
  opacity: 0.9;
  max-width: 10rem;
  line-height: 1.35;
}

.home-about-intro__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.75rem;
}

.home-about-intro__eyebrow::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: #00AEEF;
  margin-top: 0.65rem;
}

.home-about-intro__title {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.home-about-intro__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1rem;
}

.home-about-intro__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.75rem;
}

.home-about-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #2E3192;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-about-intro__cta:hover {
  background: #192071;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.25);
}

/* Value pillars */
.home-pillars {
  background: linear-gradient(180deg, #f8faf9 0%, #f1f5f3 100%);
  border-top: 1px solid rgba(46, 49, 146, 0.06);
  border-bottom: 1px solid rgba(46, 49, 146, 0.06);
}

.home-pillars__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.5rem;
}

.home-pillars__title {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
}

.home-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .home-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-pillars__card {
  background: #fff;
  border: 1px solid rgba(46, 49, 146, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-pillars__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(46, 49, 146, 0.12);
  border-color: rgba(46, 49, 146, 0.18);
}

.home-pillars__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E3192 0%, #192071 100%);
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.25);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.home-pillars__icon-wrap svg {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.25));
}

.home-pillars__card:hover .home-pillars__icon-wrap {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 32px rgba(46, 49, 146, 0.35);
}

.home-pillars__card-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.home-pillars__card-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

/* Services showcase */
.home-showcase__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .home-showcase__header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.home-showcase__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2E3192;
  margin-bottom: 0.5rem;
}

.home-showcase__eyebrow::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: #00AEEF;
  margin-top: 0.5rem;
}

.home-showcase__title {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
}

.home-showcase__subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 28rem;
}

.home-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .home-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-showcase__card {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 380px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 40px rgba(46, 49, 146, 0.1);
}

.home-showcase__card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.home-showcase__card:hover .home-showcase__card-image {
  transform: scale(1.06);
}

.home-showcase__card-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(20, 24, 82, 0.92) 0%, rgba(20, 24, 82, 0.35) 55%, transparent 100%);
  transition: opacity 0.35s ease;
  z-index: 1;
}

.home-showcase__card:hover .home-showcase__card-front {
  opacity: 0;
}

.home-showcase__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.home-showcase__icon-wrap svg {
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.3));
}

.home-showcase__card:hover .home-showcase__icon-wrap {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.home-showcase__card-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.home-showcase__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.96) 0%, rgba(20, 24, 82, 0.98) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.home-showcase__card:hover .home-showcase__card-overlay {
  opacity: 1;
}

.home-showcase__overlay-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.15rem;
  font-weight: 700;
  color: #00AEEF;
  margin-bottom: 0.75rem;
}

.home-showcase__overlay-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.home-showcase__overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: gap 0.3s ease;
}

.home-showcase__overlay-link:hover {
  gap: 0.55rem;
}

.home-showcase__overlay-link svg {
  color: #fff;
}

.home-showcase__all-link svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0.35rem;
  border-radius: 9999px;
  background: #2E3192;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.home-showcase__all-link:hover svg {
  transform: translateX(3px);
  background: #1F2478;
}

.home-showcase__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.home-showcase__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2E3192;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.home-showcase__all-link:hover {
  color: #192071;
  gap: 0.75rem;
}

/* Process section */
.home-process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #141852 0%, #2E3192 100%);
  color: #fff;
}

.home-process--has-bg {
  background-size: cover;
  background-position: center;
}

.home-process__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 82, 0.92) 0%, rgba(46, 49, 146, 0.88) 100%);
  z-index: 0;
}

.home-process__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00AEEF;
  margin-bottom: 0.5rem;
}

.home-process__title {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  max-width: 36rem;
  margin: 0 auto;
}

.home-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.home-process__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-height: 360px;
}

.home-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-process__step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-process__step:last-child {
  border-bottom: none;
}

.home-process__step-num {
  flex-shrink: 0;
  font-family: var(--font-heading, inherit);
  font-size: 1.5rem;
  font-weight: 800;
  color: #00AEEF;
  line-height: 1;
  min-width: 2.5rem;
}

.home-process__step-title {
  font-family: var(--font-heading, inherit);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.home-process__step-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Footer newsletter */
.footer-newsletter {
  margin-top: 0.5rem;
}

.footer-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter__input {
  flex: 1;
  min-width: 10rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.875rem;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter__input:focus {
  outline: none;
  border-color: #00AEEF;
  background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter__btn {
  padding: 0.65rem 1.1rem;
  background: #00AEEF;
  color: #141852;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter__btn:hover {
  background: #e8c820;
  transform: translateY(-1px);
}

.footer-newsletter__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  .home-about-intro__cta,
  .home-pillars__card,
  .home-showcase__card-image,
  .home-showcase__card-front,
  .home-showcase__card-overlay {
    transition: none;
  }
}
