/* ==========================================================================
   Service — Statement (Flexible Content section, Variant 1)

   A light, centred marketing statement: white ground, a big headline with
   editor-chosen accent phrases in the brand blue (#3054ff — the same accent
   Hero Variant 3's CTA uses), a muted sub-line, one outlined pill CTA + an
   optional text CTA, and a large rounded media showcase (image or
   progressive video) that reveals on scroll.

   Own `.svc-statement-*` namespace, so it never touches the hero or any
   other section variant. Entrance + media reveal: initServiceStatement() in
   assets/js/services/statement.js.
   ========================================================================== */

.svc-statement {
  display: block;
  padding: clamp(40px, 5vw, 80px) 0;
  background: #ffffff;
  color: #0a0a0a;
}

.svc-statement-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
}

.svc-statement-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.4vw, 26px);
  max-width: 50rem;
  text-align: center;
}

.svc-statement-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3054ff;
}

.svc-statement-title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #0a0a0a;
  text-wrap: balance;
}

.svc-statement-accent {
  color: #3054ff;
  font-weight: 800;
}

.svc-statement-sub {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  line-height: 1.6;
  color: #5b6472;
}

.svc-statement-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  margin-top: clamp(8px, 2vw, 18px);
}

.svc-statement-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(10, 10, 10, 0.85);
  background: #ffffff;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-statement-btn:hover {
  background: #0a0a0a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10, 10, 10, 0.5);
}

.svc-statement-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1.5px solid currentColor;
}

.svc-statement-btn-arrow i,
.svc-statement-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.svc-statement-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3054ff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.svc-statement-btn-text i,
.svc-statement-btn-text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.svc-statement-btn-text:hover i,
.svc-statement-btn-text:hover svg {
  transform: translateX(3px);
}

.svc-statement-media {
  position: relative;
  width: 100%;
  max-width: 1040px;
  aspect-ratio: 16 / 8;
  border-radius: clamp(16px, 2vw, 28px);
  overflow: hidden;
  background: #eef1f6;
  box-shadow: 0 40px 80px -44px rgba(10, 12, 20, 0.3);
  /* iOS: keep the rounded corner clip clean while children transform. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari rounded-overflow fix */
}

.svc-statement-media > img,
.svc-statement-media > video {
  position: absolute;
  inset: -6% 0;
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .svc-statement-media {
    aspect-ratio: 16 / 11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-statement-btn,
  .svc-statement-btn-text i,
  .svc-statement-btn-text svg {
    transition: none;
  }
}
