:root {
  --wr-navy:       #0a1f4b;
  --wr-red:        #ac151c;
  --wr-red-hover:  #c91e26;
  --wr-off-white:  #f5f6f8;
  --wr-text-dark:  #1a1a2e;
  --wr-text-muted: #5a6480;
  --wr-white:      #ffffff;
  --wr-ease:       0.38s cubic-bezier(0.4,0,0.2,1);
}

* {
  font-family: 'Outfit', sans-serif;
}

.highlight {
  color: var(--wr-red) !important;
}

/* =============================================
   KEYFRAMES
   ============================================= */

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

@keyframes wr-fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes wr-lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes wr-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(1.7); }
}

@keyframes wr-imgPan {
  from { transform: scale(1.07) translateX(10px); }
  to   { transform: scale(1.00) translateX(0px); }
}

/* =============================================
   BANNER — FULL-WIDTH IMAGE + BOTTOM ANGLE CUT
   Class: .wr-banner
   ============================================= */

.wr-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 !important;
  background: var(--wr-navy) !important;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
  margin-bottom: -60px;
}

/* Full image behind everything */
.wr-banner .wr-banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wr-banner .wr-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: wr-imgPan 12s ease-out both;
}

/* Dark overlay — right side darker so text stays readable */
.wr-banner .wr-banner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(10,31,75,0.88) 0%,
    rgba(10,31,75,0.68) 45%,
    rgba(10,31,75,0.28) 100%
  );
  z-index: 1;
}

/* Red left-edge accent bar */
.wr-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--wr-red);
  z-index: 10;
}

/* Content sits above image */
.wr-banner .wr-banner-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 80px 0 120px;
}

/* Eyebrow tag */
.wr-banner .wr-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(172,21,28,0.18);
  border: 1px solid rgba(172,21,28,0.42);
  color: #ff8a8e;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
  animation: wr-fadeUp 0.6s 0.05s ease both;
}

.wr-banner .wr-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wr-red);
  animation: wr-blink 1.8s ease infinite;
  flex-shrink: 0;
}

/* Heading */
.wr-banner .wr-banner-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  color: #ffffff !important;
  margin-bottom: 0 !important;
  letter-spacing: -0.02em;
  animation: wr-fadeUp 0.6s 0.15s ease both;
}

.wr-banner .wr-banner-inner h2 .wr-white { color: #ffffff !important; }
.wr-banner .wr-banner-inner h2 .wr-red   { color: #ff5a5f !important; }

/* Underline bar */
.wr-banner .wr-underline {
  width: 56px;
  height: 4px;
  background: var(--wr-red);
  border-radius: 2px;
  margin: 20px 0 22px;
  transform-origin: left;
  transform: scaleX(0);
  animation: wr-lineGrow 0.8s 0.6s ease both;
}

/* Desc */
.wr-banner .wr-desc {
  color: rgba(255,255,255,0.70);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 38px;
  animation: wr-fadeUp 0.6s 0.28s ease both;
}

/* Buttons */
.wr-banner .wr-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: wr-fadeUp 0.6s 0.38s ease both;
  margin-bottom: 56px;
}

.wr-banner .wr-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wr-red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--wr-ease), transform var(--wr-ease);
}

.wr-banner .wr-btn-solid:hover {
  background: var(--wr-red-hover);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.wr-banner .wr-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.30);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--wr-ease), border-color var(--wr-ease), transform var(--wr-ease);
}

.wr-banner .wr-btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.60);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Stats row */
.wr-banner .wr-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.10);
  animation: wr-fadeUp 0.6s 0.48s ease both;
}

.wr-banner .wr-stat-num {
  display: block;
  font-size: 1.85rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.wr-banner .wr-stat-num span { color: #ff5a5f; }

.wr-banner .wr-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.46);
  margin-top: 5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* =============================================
   INTRO + FORM SECTION
   ============================================= */

.wr-intro {
  background: var(--wr-white);
  position: relative;
  padding-top: 80px;
}

.wr-intro .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--wr-text-dark);
  line-height: 1.25;
  text-transform: uppercase;
}

.wr-intro .section-title .highlight { color: var(--wr-red); }

.wr-intro .sib-desc {
  color: var(--wr-text-muted);
  font-size: 0.97rem;
  line-height: 1.86;
}

/* =============================================
   KEY BENEFITS SECTION
   ============================================= */

.wr-benefits {
  background: var(--wr-off-white);
  position: relative;
  overflow: hidden;
}

.wr-benefits::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 55px solid rgba(10,31,75,0.04);
  pointer-events: none;
}

.wr-benefits .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--wr-text-dark);
  line-height: 1.25;
  text-transform: uppercase;
}

.wr-benefits .section-title .highlight { color: var(--wr-red); }

.wr-benefits .section-desc {
  color: var(--wr-text-muted);
  font-size: 0.97rem;
  line-height: 1.86;
}

.wr-benefits .wr-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(172,21,28,0.08);
  color: var(--wr-red);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.wr-benefits .wr-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(10,31,75,0.14);
  position: relative;
}

.wr-benefits .wr-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 3px solid rgba(172,21,28,0.15);
  z-index: 1;
  pointer-events: none;
}

.wr-benefits .wr-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.6s ease;
}

.wr-benefits .wr-img-wrap:hover img { transform: scale(1.03); }

/* =============================================
   COMMON FEATURE SECTION
   ============================================= */

.wr-feature {
  background: var(--wr-white);
  position: relative;
}

.wr-feature .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--wr-text-dark);
  line-height: 1.25;
  text-transform: uppercase;
}

.wr-feature .section-title .highlight { color: var(--wr-red); }

.wr-feature .section-desc {
  color: var(--wr-text-muted);
  font-size: 0.97rem;
  line-height: 1.86;
}

.wr-feature .wr-accent-line {
  width: 50px;
  height: 4px;
  background: var(--wr-red);
  border-radius: 2px;
  margin-bottom: 22px;
}

.wr-feature .wr-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(10,31,75,0.13);
  position: relative;
}

.wr-feature .wr-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 3px solid rgba(10,31,75,0.08);
  z-index: 1;
  pointer-events: none;
}

.wr-feature .wr-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.6s ease;
}

.wr-feature .wr-img-wrap:hover img { transform: scale(1.03); }

/* =============================================
   NEW SECTION 1 — TRUST STRIP (dark navy)
   ============================================= */

.wr-trust {
  background: var(--wr-navy);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}

.wr-trust::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(172,21,28,0.07);
  pointer-events: none;
}

.wr-trust .wr-trust-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(172,21,28,0.18);
  border: 1px solid rgba(172,21,28,0.38);
  color: #ff8a8e;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.wr-trust h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 500;
  color: var(--wr-white);
  line-height: 1.22;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.wr-trust h2 span { color: #ff6b72; }

.wr-trust .wr-trust-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 52px;
}

/* Two-column layout: left text, right image */
.wr-trust .wr-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wr-trust .wr-trust-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
}

.wr-trust .wr-trust-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(172,21,28,0.18) 0%, transparent 60%);
  z-index: 1;
  border-radius: 14px;
}

.wr-trust .wr-trust-img img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.6s ease;
}

.wr-trust .wr-trust-img:hover img { transform: scale(1.03); }

.wr-trust .wr-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wr-trust .wr-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.80);
  font-size: 0.96rem;
  line-height: 1.7;
}

.wr-trust .wr-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(172,21,28,0.22);
  border: 1.5px solid rgba(172,21,28,0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpolyline points='3,8 6.5,11.5 13,5' stroke='%23ff6b72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.wr-trust .wr-checklist li strong {
  color: #fff;
  font-weight: 400;
}

/* =============================================
   FAQ OVERRIDES (Bootstrap Accordion)
   ============================================= */

.home-faq {
  background: #fff !important;
}

.home-faq .accordion-item {
  border-radius: 12px !important;
  margin-bottom: 12px;
  border: 1px solid rgba(10,31,75,0.08);
  box-shadow: 0 4px 15px rgba(10,31,75,0.04);
}

.home-faq .accordion-button {
  padding: 22px 28px;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--wr-text-dark);
}

.home-faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--wr-red);
}

.home-faq .accordion-button:hover {
  background: #fff;
  color: var(--wr-red);
  padding-left: 28px;
}

.home-faq .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(172,21,28,0.2);
}

.home-faq .accordion-button::after {
  background-size: 1.1rem;
}

.home-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(11%) sepia(85%) saturate(4568%) hue-rotate(349deg) brightness(91%) contrast(98%);
}

.home-faq .accordion-body {
  padding: 0 28px 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--wr-text-muted);
  border-top: none;
}

/* =============================================
   SECTION DIVIDER
   ============================================= */

.wr-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--wr-navy) 0%, var(--wr-red) 50%, var(--wr-navy) 100%);
  opacity: 0.14;
  margin: 0;
}

/* =============================================
   FORM OVERRIDES FOR WR PAGE
   ============================================= */

.sib-form-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem) !important;
  font-weight: 400 !important;
  color: var(--wr-text-dark) !important;
  margin-bottom: 24px !important;
  position: relative;
  padding-left: 20px;
}

.sib-form-title::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--wr-red);
  border-radius: 2px;
}

.sib-form-label {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: var(--wr-text-dark) !important;
  margin-bottom: 8px !important;
}

.sib-form-control {
  border: 1px solid rgba(10,31,75,0.12) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 0.94rem !important;
  transition: all var(--wr-ease) !important;
  background: #fdfdfd !important;
}

.sib-form-control:focus {
  border-color: var(--wr-red) !important;
  box-shadow: 0 0 0 4px rgba(172,21,28,0.08) !important;
  background: #fff !important;
}

.sib-form-check-input {
  width: 20px !important;
  height: 20px !important;
  border: 1.5px solid rgba(10,31,75,0.2) !important;
  cursor: pointer !important;
}

.sib-form-check-input:checked {
  background-color: var(--wr-red) !important;
  border-color: var(--wr-red) !important;
}

.sib-form-check-label {
  font-size: 0.92rem !important;
  color: var(--wr-text-muted) !important;
  padding-left: 4px !important;
  cursor: pointer !important;
}

.sib-form-wrapper {
  max-width: 520px;
  margin-left: auto;
}

.sib-form-card-inner {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(10,31,75,0.12);
  border: 1px solid rgba(10,31,75,0.05);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.wr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.wr-reveal.visible { opacity: 1; transform: translateY(0); }

.wr-reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.wr-reveal-left.visible { opacity: 1; transform: translateX(0); }

.wr-reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.wr-reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 991px) {
  .wr-banner {
    min-height: auto;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0% 100%);
    margin-bottom: -40px;
  }

  .wr-banner .wr-banner-inner {
    padding: 80px 0 110px;
  }

  .wr-trust .wr-trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wr-trust .wr-trust-img { order: -1; }
}

@media (max-width: 767px) {
  .wr-banner .wr-cta-row { flex-direction: column; }
  .wr-banner .wr-btn-solid,
  .wr-banner .wr-btn-ghost { justify-content: center; }
  .wr-banner .wr-stats { gap: 24px; }
  .wr-banner { clip-path: polygon(0 0, 100% 0, 100% 96%, 0% 100%); margin-bottom: -24px; }
}
