/*--------------------------------------------------------------
# Why Us Page — whyus.css
# All styles prefixed with .wu-
--------------------------------------------------------------*/

/* Push page below fixed navbar */
body { padding-top: 80px; }
.wu-hero { padding-top: 0; }
.wu-features, .wu-app { padding-top: 0 !important; padding-bottom: 0 !important; }

/*--------------------------------------------------------------
# Why Us Hero — Split Cinematic (.wu-hero)
--------------------------------------------------------------*/

@keyframes wuFadeRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* ── Section shell ── */
.wu-hero {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.wu-hero-inner {
  display: flex;
  width: 100%;
}

/* ── LEFT copy panel (50%) ── */
.wu-copy {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 52px 48px 6%;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.wu-copy::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: #E2E8F0;
}

/* ── Mobile: collapse hero to content height ── */
@media (min-width: 992px) {
  .wu-hero-inner { min-height: calc(100vh - 80px); }
}

@media (max-width: 991px) {
  .wu-hero-inner { flex-direction: column; }
  .wu-copy {
    flex: none; max-width: 100%;
    padding: 36px 20px 28px;
    justify-content: flex-start;
  }
  .wu-copy::after { display: none; }
  .wu-subtext { max-width: 100%; margin-bottom: 14px; }
  .wu-video-panel { display: none; }
}

/* Badge */
.wu-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0F4C81;
  background: rgba(15,76,129,0.07);
  border: 1px solid rgba(15,76,129,0.18);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
  animation: wuFadeRight 0.55s cubic-bezier(0.22,1,0.36,1) 0.10s both;
}
.wu-badge i { font-size: 0.80rem; }

/* Headline */
.wu-headline {
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.10;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  animation: wuFadeRight 0.60s cubic-bezier(0.22,1,0.36,1) 0.18s both;
}

.wu-hl {
  background: linear-gradient(135deg, #0F4C81 0%, #00B8A9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Subtext */
.wu-subtext {
  font-size: 1rem;
  color: #475569;
  line-height: 1.70;
  max-width: 420px;
  margin-bottom: 28px;
  animation: wuFadeRight 0.60s cubic-bezier(0.22,1,0.36,1) 0.26s both;
}

/* 2x2 trust grid */
.wu-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  animation: wuFadeRight 0.60s cubic-bezier(0.22,1,0.36,1) 0.34s both;
}

.wu-trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.wu-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  border-color: rgba(15,76,129,0.20);
}

.wu-ti-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(15,76,129,0.10), rgba(0,184,169,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.wu-ti-icon i {
  font-size: 0.95rem;
  color: #0F4C81;
  transition: color 0.22s ease;
}
.wu-trust-item:hover .wu-ti-icon {
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
}
.wu-trust-item:hover .wu-ti-icon i { color: #fff; }

.wu-ti-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wu-ti-text strong {
  font-size: 0.835rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}
.wu-ti-text small {
  font-size: 0.70rem;
  color: #64748B;
  font-weight: 400;
}

/* ── RIGHT video panel (50%) ── */
.wu-video-panel {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.wu-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile summary strip — hidden on desktop */
.wu-summary-strip { display: none; }

@media (max-width: 991px) {
  .wu-summary-strip {
    display: block;
    margin-top: 18px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(15,76,129,0.05), rgba(0,184,169,0.05));
    border: 1px solid rgba(15,76,129,0.12);
    border-radius: 16px;
  }
  .wu-summary-strip p {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.70;
    margin: 0 0 10px;
  }
  .wu-summary-strip strong {
    font-size: 0.84rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0F4C81, #00B8A9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .wu-copy { padding: 60px 36px 36px 4%; }
}

@media (max-width: 767px) {
  .wu-headline { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 8px; }
  .wu-subtext { font-size: 0.88rem; }
  .wu-badge { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 10px; }
  .wu-trust-grid { gap: 6px; }
}

@media (max-width: 480px) {
  .wu-trust-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .wu-trust-item { padding: 8px 10px; gap: 7px; }
  .wu-ti-icon { width: 30px; height: 30px; }
}

/*--------------------------------------------------------------
# Why Us — Feature Split Rows (.wu-features)
--------------------------------------------------------------*/
.wu-features {
  padding: 24px 0 0;
  background: #ffffff;
}

.wu-split {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F1F5F9;
}
.wu-split:last-child { border-bottom: none; padding-bottom: 16px; }

/* Reversed row */
.wu-split-rev { flex-direction: row-reverse; }

/* Image side */
.wu-split-img {
  flex: 0 0 44%;
  max-width: 44%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(15,76,129,0.10);
  position: relative;
}
.wu-split-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.wu-split-img:hover img { transform: scale(1.04); }

/* Cards side */
.wu-split-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wu-split-cards > .section-label { margin-bottom: 4px; }

/* Individual feature card */
.wu-fc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.wu-fc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ic, #0F4C81), #00B8A9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.wu-fc-card:hover::before { transform: scaleX(1); }
.wu-fc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.09);
  border-color: rgba(15,76,129,0.16);
}

/* Icon box */
.wu-fc-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--ib, rgba(15,76,129,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.wu-fc-card-icon i {
  font-size: 1.1rem;
  color: var(--ic, #0F4C81);
  transition: color 0.25s ease;
}
.wu-fc-card:hover .wu-fc-card-icon {
  background: var(--ic, #0F4C81);
  transform: scale(1.08) rotate(-4deg);
}
.wu-fc-card:hover .wu-fc-card-icon i { color: #fff; }

.wu-fc-card h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.wu-fc-card:hover h2 { color: var(--ic, #0F4C81); }
.wu-fc-card p {
  font-size: 0.855rem;
  color: #64748B;
  line-height: 1.60;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .wu-features { padding: 16px 0 0; }
  .wu-split, .wu-split-rev {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
  }
  .wu-split-img { flex: 0 0 100%; max-width: 100%; }
  .wu-split-img img { height: 220px; }
  .wu-split-cards { flex: 0 0 100%; gap: 10px; }
}

@media (max-width: 575px) {
  .wu-features { padding: 12px 0 0; }
  .wu-split { padding-bottom: 16px; gap: 12px; }
  .wu-split-img img { height: 180px; }
  .wu-fc-card { padding: 12px 14px; gap: 10px; }
  .wu-fc-card h2 { font-size: 0.88rem; }
  .wu-fc-card p { font-size: 0.82rem; }
  .wu-fc-card-icon { width: 36px; height: 36px; min-width: 36px; }
}

/*--------------------------------------------------------------
# Why Us — Smart Consult App (.wu-app)
--------------------------------------------------------------*/
.wu-app {
  padding: 24px 0 32px;
  background: #F8FAFC;
}

.wu-app-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(15,23,42,0.07);
  overflow: hidden;
  position: relative;
}

/* Subtle teal glow top-right */
.wu-app-inner::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,184,169,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Copy */
.wu-app-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}
.wu-app-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 10px 0 12px;
}
.wu-app-copy p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.70;
  margin-bottom: 20px;
  max-width: 440px;
}

/* Checklist */
.wu-app-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wu-app-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  padding: 7px 0;
  border-bottom: 1px solid #F1F5F9;
}
.wu-app-list li:last-child { border-bottom: none; }
.wu-app-list li i {
  color: #00B8A9;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Free badge */
.wu-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(15,76,129,0.07), rgba(0,184,169,0.07));
  border: 1px solid rgba(0,184,169,0.25);
  color: #0d9488;
  font-size: 0.80rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
}
.wu-app-badge i { color: #00B8A9; }

/* Image */
.wu-app-img {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(15,76,129,0.12);
  position: relative;
  z-index: 1;
}
.wu-app-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.wu-app-img:hover img { transform: scale(1.04); }

/* Responsive */
@media (max-width: 991px) {
  .wu-app { padding: 16px 0 24px; }
  .wu-app-inner { flex-direction: column; gap: 16px; padding: 20px 18px; }
  .wu-app-img { flex: 0 0 100%; max-width: 100%; }
  .wu-app-img img { height: 200px; }
  .wu-app-copy p { max-width: 100%; font-size: 0.9rem; margin-bottom: 12px; }
  .wu-app-copy h2 { font-size: clamp(1.2rem, 4vw, 1.6rem); margin: 6px 0 8px; }
  .wu-app-list { gap: 2px; margin-bottom: 14px; }
  .wu-app-list li { font-size: 0.83rem; padding: 5px 0; }
}

@media (max-width: 575px) {
  .wu-app { padding: 12px 0 20px; }
  .wu-app-inner { padding: 16px 14px; border-radius: 12px; gap: 14px; }
  .wu-app-img img { height: 170px; }
}
