
/* =============================================================
   BendFlow self-contained GoDaddy legal-page section.
   Images are embedded directly as data URIs.
   No DOCTYPE, HTML, HEAD, BODY, external image, or script required.
   ============================================================= */

.bfl-page,
.bfl-page * {
  box-sizing: border-box;
}

.bfl-page {
  --navy: #07264a;
  --navy-2: #0b3767;
  --blue: #0a5ed7;
  --sky: #0aa5e8;
  --line: #d9e5ef;
  --light: #f4f8fc;
  --text: #0b2745;
  --muted: #475e72;
  width: 100%;
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
}

.bfl-page a {
  text-decoration: none;
}

/* Header */
.bfl-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5edf4;
}

.bfl-header-top {
  width: min(1180px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 285px) 1fr auto;
  align-items: center;
  gap: 24px;
}

.bfl-logo {
  display: inline-flex;
  align-items: center;
}

.bfl-logo img {
  display: block;
  width: 100%;
  max-width: 285px;
  height: auto;
}

.bfl-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  white-space: nowrap;
}

.bfl-desktop-nav a,
.bfl-mobile-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.bfl-desktop-nav a:hover,
.bfl-mobile-nav a:hover {
  color: var(--blue);
}

.bfl-request {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 7px;
  background: var(--blue);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.bfl-mobile-nav {
  display: none;
}

/* Hero */
.bfl-hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #eef5fa;
}

.bfl-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bfl-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.99) 0%,
    rgba(255,255,255,0.96) 43%,
    rgba(255,255,255,0.72) 64%,
    rgba(255,255,255,0.12) 100%
  );
}

.bfl-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.bfl-hero-copy {
  max-width: 650px;
  padding: 52px 0;
}

.bfl-eyebrow {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.bfl-hero h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.035em;
}

.bfl-hero h1 span {
  color: var(--blue);
}

.bfl-hero p {
  max-width: 610px;
  margin: 0;
  color: #40566a;
  font-size: 17px;
}

/* Legal content */
.bfl-legal-area {
  padding: 48px 16px 64px;
  background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.bfl-wrap {
  width: min(930px, 100%);
  margin: 0 auto;
}

.bfl-legal-card {
  padding: 36px 40px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 38, 74, .07);
}

.bfl-legal-card .updated {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #edf7ff;
  color: #2c5c7d;
  font-size: 12px;
  font-weight: 800;
}

.bfl-legal-card h2 {
  margin: 30px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.bfl-legal-card h2:first-of-type {
  margin-top: 14px;
}

.bfl-legal-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
}

.bfl-legal-card p,
.bfl-legal-card li {
  color: var(--muted);
  font-size: 15px;
}

.bfl-legal-card p {
  margin: 0 0 13px;
}

.bfl-legal-card ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}

.bfl-legal-card li {
  margin: 7px 0;
}

.bfl-legal-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.bfl-legal-card .sms-privacy-promise,
.bfl-legal-card .sms-summary {
  margin: 0 0 24px;
  padding: 18px;
  border-left: 4px solid var(--sky);
  border-radius: 8px;
  background: #edf7ff;
  color: #29465f;
}

.bfl-legal-card .brevo-contact-box,
.bfl-legal-card .notice {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #edf7ff;
  color: #29465f;
  font-size: 13px;
}

/* Footer */
.bfl-footer {
  background: var(--navy);
  color: #ffffff;
}

.bfl-footer-inner {
  width: min(1180px, calc(100% - 30px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}

.bfl-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.bfl-footer a {
  color: #ffffff;
}

.bfl-footer a:hover {
  text-decoration: underline;
}

.bfl-sep {
  opacity: .38;
}

/* iPad/tablet */
@media (max-width: 1024px) {
  .bfl-header-top {
    min-height: 74px;
    grid-template-columns: minmax(180px, 225px) 1fr auto;
    gap: 14px;
  }

  .bfl-desktop-nav {
    display: none;
  }

  .bfl-mobile-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    border-top: 1px solid #e6edf3;
    border-bottom: 1px solid #dce6ee;
    background: #ffffff;
  }

  .bfl-mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 7px;
    border-right: 1px solid #e6edf3;
    text-align: center;
    line-height: 1.15;
  }

  .bfl-mobile-nav a:last-child {
    border-right: 0;
  }

  .bfl-request {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Phone */
@media (max-width: 700px) {
  .bfl-header-top {
    width: calc(100% - 24px);
    min-height: 68px;
    grid-template-columns: minmax(135px, 1fr) auto;
    gap: 10px;
  }

  .bfl-logo img {
    width: 170px;
    max-width: 47vw;
  }

  .bfl-request {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .bfl-mobile-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bfl-mobile-nav a {
    min-height: 48px;
    font-size: 13px;
    border-bottom: 1px solid #e6edf3;
  }

  .bfl-mobile-nav a:nth-child(2n) {
    border-right: 0;
  }

  .bfl-mobile-nav a:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .bfl-hero {
    min-height: 505px;
  }

  .bfl-hero-image {
    object-position: 63% center;
  }

  .bfl-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.12) 0%,
      rgba(255,255,255,.70) 42%,
      rgba(255,255,255,.98) 70%,
      #ffffff 100%
    );
  }

  .bfl-hero-inner {
    min-height: 505px;
    align-items: flex-end;
  }

  .bfl-hero-copy {
    padding: 250px 0 35px;
  }

  .bfl-hero h1 {
    font-size: 42px;
  }

  .bfl-hero p {
    font-size: 15px;
  }

  .bfl-legal-area {
    padding: 28px 10px 42px;
  }

  .bfl-legal-card {
    padding: 26px 19px 31px;
  }

  .bfl-legal-card h2 {
    font-size: 20px;
  }

  .bfl-legal-card p,
  .bfl-legal-card li {
    font-size: 14px;
  }

  .bfl-footer-inner {
    min-height: 0;
    padding: 18px 0;
    display: block;
    text-align: center;
  }

  .bfl-footer-links {
    margin-top: 11px;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .bfl-logo img {
    width: 150px;
  }

  .bfl-request {
    padding: 9px 10px;
    font-size: 11px;
  }
}


/* Final compact Request Service button sizing */
.bfl-header-top .bfl-request{
  display:inline-flex !important;
  width:max-content !important;
  min-width:0 !important;
  max-width:160px !important;
  min-height:44px !important;
  height:auto !important;
  padding:10px 16px !important;
  margin:0 !important;
  justify-self:end !important;
  align-self:center !important;
  flex:0 0 auto !important;
  line-height:1.1 !important;
  white-space:nowrap !important;
  overflow:visible !important;
}

@media (max-width:1024px){
  .bfl-header-top .bfl-request{
    max-width:145px !important;
    min-height:42px !important;
    padding:9px 14px !important;
    font-size:12px !important;
  }
}

@media (max-width:700px){
  .bfl-header-top .bfl-request{
    width:auto !important;
    max-width:132px !important;
    min-height:40px !important;
    padding:9px 12px !important;
    font-size:11.5px !important;
    border-radius:6px !important;
  }
}

@media (max-width:390px){
  .bfl-header-top .bfl-request{
    max-width:118px !important;
    min-height:38px !important;
    padding:8px 9px !important;
    font-size:10.5px !important;
  }
}
