/* =========================================================
   BOOKBRAIDS — PUBLIC INFORMATION PAGES
   About · Contact · FAQ · Help · Privacy · Terms
========================================================= */

:root {
  --bb-bg: #fbf6f0;
  --bb-card: #ffffff;
  --bb-soft: #f5e9df;
  --bb-soft-2: #fff9f4;
  --bb-text: #211713;
  --bb-muted: #74645c;
  --bb-border: #ead9ce;
  --bb-orange: #bd551e;
  --bb-orange-dark: #92350f;
  --bb-brown: #2a1207;
  --bb-shadow: 0 24px 70px rgba(65, 34, 18, 0.08);
  --bb-radius: 28px;
  --bb-max: 1240px;
}

html {
  scroll-behavior: smooth;
}

.about-page,
.contact-page,
.faq-page,
.help-page,
.privacy-page,
.terms-page {
  background: var(--bb-bg);
  color: var(--bb-text);
}

.about-main,
.contact-main,
.faq-main,
.help-main,
.privacy-main,
.terms-main {
  width: 100%;
}


/* =========================================================
   COMMON
========================================================= */

.about-main .eyebrow,
.contact-main .eyebrow,
.faq-main .eyebrow,
.help-main .eyebrow,
.privacy-main .eyebrow,
.terms-main .eyebrow {
  margin: 0 0 14px;
  color: var(--bb-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-section-heading,
.help-section-heading,
.faq-section-heading {
  margin-bottom: 34px;
}

.about-section-heading h2,
.help-section-heading h2,
.faq-section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--bb-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-main .btn-main,
.contact-main .btn-main,
.faq-main .btn-main,
.help-main .btn-main,
.privacy-main .btn-main,
.terms-main .btn-main {
  width: auto;
  min-width: 0;
}

.about-main .secondary-btn,
.contact-main .secondary-btn,
.faq-main .secondary-btn,
.help-main .secondary-btn,
.privacy-main .secondary-btn,
.terms-main .secondary-btn {
  width: auto;
  min-width: 0;
}


/* =========================================================
   ABOUT
========================================================= */

.about-hero {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 54px auto 110px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-hero-desc {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--bb-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-gallery {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-photo {
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--bb-shadow);
}

.about-photo-large {
  grid-row: 1 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-intro,
.about-process,
.about-audiences,
.about-services {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 0 auto 110px;
}

.about-intro {
  padding-top: 74px;
  border-top: 1px solid var(--bb-border);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
  margin-top: 40px;
}

.about-intro-grid p {
  margin: 0;
  color: var(--bb-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-process-card {
  padding: 32px;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  background: var(--bb-card);
}

.about-process-card > span {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--bb-soft);
  color: var(--bb-orange-dark);
  font-weight: 800;
}

.about-process-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.about-process-card p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}

.about-mission {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 32px;
  background: var(--bb-brown);
  color: white;
}

.about-mission-photo {
  min-height: 610px;
}

.about-mission-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-content {
  padding: 72px 64px;
  align-self: center;
}

.about-mission-content h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.03;
}

.about-mission-content p:not(.eyebrow) {
  color: #dfd2ca;
  line-height: 1.8;
}

.about-audiences {
  display: grid;
  gap: 24px;
}

.about-audience-card {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  overflow: hidden;
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  background: white;
}

.about-audience-content {
  padding: 58px;
  align-self: center;
}

.about-audience-content h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.about-audience-content p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--bb-muted);
  line-height: 1.75;
}

.about-audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-services-row a {
  padding: 12px 18px;
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  background: white;
  color: var(--bb-text);
  text-decoration: none;
  font-weight: 700;
}

.about-services-row a:hover {
  border-color: var(--bb-orange);
  color: var(--bb-orange);
}

.about-final-cta,
.contact-final-cta,
.help-final-cta,
.faq-contact-cta,
.privacy-final-section,
.terms-final-section {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 0 auto 110px;
  padding: 52px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 30px;
  background: var(--bb-brown);
  color: white;
}

.about-final-cta h2,
.contact-final-cta h2,
.help-final-cta h2,
.faq-contact-cta h2,
.privacy-final-section h2,
.terms-final-section h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.03;
}

.about-final-cta p:not(.eyebrow),
.contact-final-cta p:not(.eyebrow),
.help-final-cta p:not(.eyebrow),
.faq-contact-cta p:not(.eyebrow),
.privacy-final-section p:not(.eyebrow),
.terms-final-section p:not(.eyebrow) {
  margin: 0;
  color: #dacdc6;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-hero {
  padding: 88px 28px 68px;
  background: linear-gradient(135deg, #fff8f2, #f4e7de);
}

.contact-hero-content {
  width: min(var(--bb-max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.contact-hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-hero-desc {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--bb-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-hero-side {
  padding: 34px;
  border: 1px solid var(--bb-border);
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
}

.contact-hero-mark {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--bb-brown);
  color: white;
  font-weight: 900;
}

.contact-hero-side p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}

.contact-options {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-option-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  background: white;
}

.contact-option-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--bb-orange);
  font-weight: 800;
}

.contact-option-label {
  margin: 0 0 6px;
  color: var(--bb-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-option-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.contact-option-card h2 a {
  color: var(--bb-text);
}

.contact-option-card p:last-child {
  color: var(--bb-muted);
  line-height: 1.65;
}

.contact-content {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-help-card {
  padding: 46px;
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  background: white;
  box-shadow: var(--bb-shadow);
}

.contact-form-heading h2,
.contact-help-card h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-form-heading > p:last-child,
.contact-help-card > p {
  color: var(--bb-muted);
  line-height: 1.7;
}

.contact-form {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  background: var(--bb-soft-2);
  font: inherit;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(189,85,30,0.18);
  border-color: var(--bb-orange);
}

.contact-full-row {
  grid-column: 1 / -1;
}

.contact-submit-row {
  margin-top: 4px;
}

.contact-help-links {
  margin-top: 28px;
  display: grid;
}

.contact-help-link {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--bb-border);
  color: var(--bb-text);
  text-decoration: none;
}

.contact-help-link div {
  display: grid;
  gap: 6px;
}

.contact-help-link span {
  color: var(--bb-muted);
  line-height: 1.5;
}


/* =========================================================
   FAQ
========================================================= */

.faq-hero {
  padding: 90px 28px 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff9f4, #f3e4da);
}

.faq-hero-inner {
  width: min(900px, 100%);
  margin: auto;
}

.faq-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.faq-hero-desc {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--bb-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.faq-search-wrap {
  margin: 34px auto 0;
  max-width: 620px;
}

.faq-search-wrap input {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  background: white;
  font: inherit;
  box-shadow: 0 14px 45px rgba(50,20,5,0.07);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.faq-category-nav {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 36px auto 84px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.faq-category-nav a {
  padding: 11px 17px;
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  background: white;
  color: var(--bb-text);
  text-decoration: none;
  font-weight: 700;
}

.faq-category-nav a:hover {
  background: var(--bb-orange);
  border-color: var(--bb-orange);
  color: white;
}

.faq-section,
.faq-no-results {
  width: min(900px, calc(100% - 56px));
  margin: 0 auto 84px;
  scroll-margin-top: 115px;
}

.faq-list {
  border-top: 1px solid var(--bb-border);
}

.faq-item {
  border-bottom: 1px solid var(--bb-border);
}

.faq-item summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--bb-text);
  font-size: 1.08rem;
  font-weight: 750;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--bb-orange);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 50px 26px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.8;
}

.faq-no-results {
  padding: 38px;
  text-align: center;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  background: white;
}


/* =========================================================
   HELP
========================================================= */

.help-hero {
  padding: 70px 28px 90px;
  background: linear-gradient(135deg, #fff8f1, #f5e6dc);
}

.help-hero-content {
  width: min(var(--bb-max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.help-hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.help-hero-desc {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--bb-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.help-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.help-app-preview {
  display: flex;
  justify-content: center;
}

.help-phone {
  width: min(310px, 80vw);
  aspect-ratio: 0.52;
  padding: 13px;
  border: 7px solid #231811;
  border-radius: 46px;
  background: #231811;
  box-shadow: 0 35px 80px rgba(47,22,8,0.22);
}

.help-phone-top {
  width: 84px;
  height: 18px;
  margin: -2px auto 10px;
  border-radius: 999px;
  background: #110b08;
}

.help-phone-screen {
  height: calc(100% - 26px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background: #fff8ef;
  text-align: center;
}

.help-app-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.help-phone-screen h2 {
  margin: 16px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
}

.help-phone-screen h2 span {
  color: var(--bb-orange);
}

.help-phone-screen p {
  color: var(--bb-muted);
  font-size: 0.88rem;
}

.help-benefits,
.help-install-section,
.help-desktop-section,
.help-troubleshooting,
.help-more-section {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: 90px auto;
}

.help-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.help-benefit-card {
  padding: 30px;
  border: 1px solid var(--bb-border);
  border-radius: 21px;
  background: white;
}

.help-benefit-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--bb-orange);
  font-weight: 850;
}

.help-benefit-card h3 {
  margin: 0 0 10px;
}

.help-benefit-card p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.65;
}

.help-device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.help-device-card {
  padding: 40px;
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  background: white;
  box-shadow: var(--bb-shadow);
}

.help-device-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 35px;
}

.help-device-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  background: var(--bb-brown);
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
}

.help-device-header h2 {
  margin: 0;
  font-size: 1.55rem;
}

.help-steps {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.help-steps li {
  padding: 21px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  border-top: 1px solid var(--bb-border);
}

.help-steps li > span {
  color: var(--bb-orange);
  font-weight: 800;
}

.help-steps strong {
  display: block;
  margin-bottom: 5px;
}

.help-steps p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.6;
}

.help-desktop-card {
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 26px;
  background: var(--bb-soft);
}

.help-desktop-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.help-desktop-card p {
  max-width: 700px;
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.7;
}

.help-trouble-list {
  max-width: 900px;
}

.help-trouble-item {
  border-bottom: 1px solid var(--bb-border);
}

.help-trouble-item summary {
  padding: 23px 42px 23px 0;
  cursor: pointer;
  font-weight: 750;
}

.help-trouble-item div {
  padding: 0 0 24px;
  color: var(--bb-muted);
  line-height: 1.75;
}

.help-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.help-more-card {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  background: white;
  color: var(--bb-text);
  text-decoration: none;
}

.help-more-label {
  color: var(--bb-orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.help-more-card h3 {
  margin: 11px 0;
  font-size: 1.4rem;
}

.help-more-card p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.6;
}

.help-more-arrow {
  color: var(--bb-orange);
  font-size: 1.5rem;
}


/* =========================================================
   PRIVACY + TERMS
========================================================= */

.privacy-hero,
.terms-hero {
  padding: 84px 28px 72px;
  background: linear-gradient(135deg, #fff8f3, #f2e4dc);
  border-bottom: 1px solid var(--bb-border);
}

.privacy-hero-inner,
.terms-hero-inner {
  width: min(var(--bb-max), 100%);
  margin: auto;
}

.privacy-hero h1,
.terms-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.privacy-hero-desc,
.terms-hero-desc {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--bb-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.privacy-updated,
.terms-updated {
  margin-top: 30px;
  display: flex;
  gap: 7px;
  color: var(--bb-muted);
}

.privacy-layout,
.terms-layout {
  width: min(var(--bb-max), calc(100% - 56px));
  margin: auto;
  padding: 72px 0 105px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.privacy-navigation,
.terms-navigation {
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 135px);
  overflow-y: auto;
  padding-right: 10px;
}

.privacy-navigation-title,
.terms-navigation-title {
  margin: 0 0 15px;
  color: var(--bb-orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-navigation nav,
.terms-navigation nav {
  display: grid;
  gap: 3px;
}

.privacy-navigation a,
.terms-navigation a {
  padding: 9px 11px;
  border-radius: 9px;
  color: var(--bb-muted);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.35;
}

.privacy-navigation a:hover,
.terms-navigation a:hover {
  background: var(--bb-soft);
  color: var(--bb-orange-dark);
}

.privacy-section,
.terms-section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--bb-border);
  scroll-margin-top: 110px;
}

.privacy-section-number,
.terms-section-number {
  display: inline-grid;
  place-items: center;
  min-width: 43px;
  height: 30px;
  padding: 0 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--bb-soft);
  color: var(--bb-orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.privacy-section h2,
.terms-section h2 {
  max-width: 850px;
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.privacy-section > p,
.terms-section > p {
  max-width: 850px;
  margin: 0 0 16px;
  color: var(--bb-muted);
  font-size: 1rem;
  line-height: 1.83;
}

.privacy-card-grid,
.privacy-rights-grid,
.terms-provider-grid,
.privacy-provider-list {
  max-width: 880px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.privacy-card,
.privacy-rights-grid article,
.terms-provider-grid article,
.privacy-provider-list article {
  padding: 24px;
  border: 1px solid var(--bb-border);
  border-radius: 18px;
  background: white;
}

.privacy-card h3,
.privacy-rights-grid h3 {
  margin: 0 0 9px;
}

.privacy-card p,
.privacy-rights-grid p,
.terms-provider-grid p,
.privacy-provider-list p {
  margin: 0;
  color: var(--bb-muted);
  line-height: 1.65;
}

.privacy-list,
.terms-list {
  max-width: 850px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.privacy-list li,
.terms-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid var(--bb-border);
  border-radius: 13px;
  background: white;
  color: var(--bb-muted);
  line-height: 1.6;
}

.privacy-list li::before,
.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--bb-orange);
  font-weight: 900;
}

.privacy-note,
.privacy-highlight,
.terms-note,
.terms-warning {
  max-width: 850px;
  margin: 25px 0;
  padding: 23px 25px;
  border: 1px solid var(--bb-border);
  border-radius: 17px;
  background: var(--bb-soft-2);
}

.privacy-highlight {
  background: var(--bb-brown);
  color: white;
}

.privacy-highlight p {
  color: #e7d9d1;
}

.privacy-contact-card,
.terms-contact-card {
  max-width: 850px;
  margin-top: 28px;
  padding: 29px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-radius: 22px;
  background: var(--bb-brown);
  color: white;
}

.privacy-contact-card h3,
.terms-contact-card h3 {
  max-width: 500px;
  margin: 0;
  color: white;
  overflow-wrap: anywhere;
}

.privacy-contact-card .btn-main,
.terms-contact-card .btn-main {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 130px;
  max-width: 190px;
  white-space: nowrap;
  justify-content: center;
}


/* =========================================================
   FLOATING UP / DOWN
========================================================= */

.page-jump-nav {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  gap: 8px;
}

.page-jump-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: var(--bb-brown);
  color: white;
  box-shadow: 0 12px 28px rgba(37,16,5,0.23);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease;
}

.page-jump-btn:hover {
  transform: translateY(-2px);
  background: var(--bb-orange);
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .about-hero,
  .contact-hero-content,
  .help-hero-content {
    gap: 42px;
  }

  .about-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-hero-copy h1,
  .contact-hero h1,
  .help-hero h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .contact-content {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .privacy-layout,
  .terms-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
  }

  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    padding: 44px;
  }
}


/* =========================================================
   RESPONSIVE — TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {
  .about-hero,
  .about-mission,
  .contact-hero-content,
  .contact-content,
  .help-hero-content,
  .privacy-layout,
  .terms-layout {
    grid-template-columns: 1fr;
  }

  /* ABOUT */

  .about-hero {
    gap: 42px;
    margin-bottom: 80px;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-gallery {
    min-height: 560px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-mission-photo {
    min-height: 480px;
  }

  .about-audience-card {
    grid-template-columns: 1fr 1fr;
  }

  /* CONTACT */

  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* HELP */

  .help-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-device-grid {
    grid-template-columns: 1fr;
  }

  /* PRIVACY / TERMS */

  .privacy-navigation,
  .terms-navigation {
    position: sticky;
    top: 82px;
    z-index: 50;
    max-height: none;
    padding: 14px 0;
    overflow: hidden;
    background: rgba(251, 246, 240, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bb-border);
  }

  .privacy-navigation-title,
  .terms-navigation-title {
    margin-bottom: 10px;
  }

  .privacy-navigation nav,
  .terms-navigation nav {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .privacy-navigation nav::-webkit-scrollbar,
  .terms-navigation nav::-webkit-scrollbar {
    display: none;
  }

  .privacy-navigation a,
  .terms-navigation a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid var(--bb-border);
    border-radius: 999px;
    background: #fff;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* =======================================================
     COMMON WIDTHS
  ======================================================= */

  .about-hero,
  .about-intro,
  .about-process,
  .about-mission,
  .about-audiences,
  .about-services,
  .contact-options,
  .contact-content,
  .faq-category-nav,
  .faq-section,
  .faq-no-results,
  .help-benefits,
  .help-install-section,
  .help-desktop-section,
  .help-troubleshooting,
  .help-more-section,
  .privacy-layout,
  .terms-layout,
  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    width: calc(100% - 32px);
    box-sizing: border-box;
  }

  .about-section-heading,
  .help-section-heading,
  .faq-section-heading {
    margin-bottom: 24px;
  }

  .about-section-heading h2,
  .help-section-heading h2,
  .faq-section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.06;
  }


  /* =======================================================
     ABOUT MOBILE
  ======================================================= */

  .about-hero {
    margin-top: 32px;
    margin-bottom: 72px;
    gap: 34px;
  }

  .about-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
    line-height: 0.98;
  }

  .about-hero-desc {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .about-hero-actions {
    width: 100%;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-hero-actions .btn-main,
  .about-hero-actions .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-hero-gallery {
    min-height: 480px;
    grid-template-columns: 1fr 0.72fr;
    grid-template-rows: 1fr 1fr;
    gap: 9px;
  }

  .about-photo {
    border-radius: 18px;
  }

  .about-intro,
  .about-process,
  .about-audiences,
  .about-services {
    margin-bottom: 72px;
  }

  .about-intro {
    padding-top: 52px;
  }

  .about-intro-grid {
    margin-top: 28px;
    gap: 18px;
  }

  .about-intro-grid p {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-process-card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .about-process-card > span {
    width: 40px;
    height: 40px;
    margin-bottom: 26px;
  }

  .about-mission {
    border-radius: 22px;
  }

  .about-mission-photo {
    min-height: 350px;
  }

  .about-mission-content {
    padding: 34px 25px 38px;
  }

  .about-mission-content h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .about-audience-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .about-audience-content {
    padding: 32px 24px;
  }

  .about-audience-content h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-audience-photo {
    min-height: 340px;
  }

  .about-services-row {
    gap: 8px;
  }

  .about-services-row a {
    padding: 10px 14px;
    font-size: 0.88rem;
  }


  /* =======================================================
     CONTACT MOBILE
  ======================================================= */

  .contact-hero {
    padding: 58px 20px 52px;
  }

  .contact-hero-content {
    gap: 30px;
  }

  .contact-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.97;
  }

  .contact-hero-desc {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .contact-hero-side {
    padding: 24px;
    border-radius: 20px;
  }

  .contact-hero-mark {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .contact-options {
    margin-top: 48px;
    margin-bottom: 48px;
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .contact-option-number {
    margin-bottom: 25px;
  }

  .contact-content {
    margin-bottom: 72px;
    gap: 18px;
  }

  .contact-form-card,
  .contact-help-card {
    padding: 28px 22px;
    border-radius: 21px;
  }

  .contact-form-heading h2,
  .contact-help-card h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .contact-form {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .contact-full-row {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-submit-row .btn-main {
    width: 100%;
    justify-content: center;
  }

  .contact-help-link {
    padding: 17px 0;
  }


  /* =======================================================
     FAQ MOBILE
  ======================================================= */

  .faq-hero {
    padding: 58px 18px 50px;
  }

  .faq-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .faq-hero-desc {
    margin-top: 20px;
    font-size: 0.97rem;
  }

  .faq-search-wrap {
    margin-top: 27px;
  }

  .faq-search-wrap input {
    box-sizing: border-box;
    padding: 15px 18px;
    font-size: 16px;
  }

  .faq-category-nav {
    margin-top: 24px;
    margin-bottom: 58px;
    padding-bottom: 5px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .faq-category-nav::-webkit-scrollbar {
    display: none;
  }

  .faq-category-nav a {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 0.83rem;
    white-space: nowrap;
  }

  .faq-section {
    margin-bottom: 60px;
    scroll-margin-top: 115px;
  }

  .faq-item summary {
    padding: 20px 43px 20px 0;
    font-size: 1rem;
    line-height: 1.45;
  }

  .faq-item summary::after {
    top: 14px;
    right: 2px;
  }

  .faq-answer {
    padding: 0 8px 22px 0;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .faq-no-results {
    padding: 28px 20px;
  }


  /* =======================================================
     HELP MOBILE
  ======================================================= */

  .help-hero {
    padding: 54px 18px 62px;
  }

  .help-hero-content {
    gap: 42px;
  }

  .help-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .help-hero-desc {
    margin-top: 20px;
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .help-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .help-hero-actions .btn-main,
  .help-hero-actions .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .help-phone {
    width: min(260px, 74vw);
    border-width: 6px;
    border-radius: 38px;
  }

  .help-phone-screen {
    border-radius: 28px;
  }

  .help-app-logo img {
    width: 74px;
    height: 74px;
  }

  .help-benefits,
  .help-install-section,
  .help-desktop-section,
  .help-troubleshooting,
  .help-more-section {
    margin-top: 68px;
    margin-bottom: 68px;
  }

  .help-benefits-grid {
    grid-template-columns: 1fr;
  }

  .help-benefit-card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .help-benefit-number {
    margin-bottom: 25px;
  }

  .help-device-grid {
    grid-template-columns: 1fr;
  }

  .help-device-card {
    padding: 27px 21px;
    border-radius: 21px;
  }

  .help-device-header {
    gap: 13px;
    margin-bottom: 27px;
  }

  .help-device-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .help-device-header h2 {
    font-size: 1.3rem;
  }

  .help-steps li {
    grid-template-columns: 31px 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .help-steps p {
    font-size: 0.94rem;
  }

  .help-desktop-card {
    padding: 28px 23px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }

  .help-desktop-card h2 {
    font-size: 1.8rem;
  }

  .help-trouble-item summary {
    padding: 20px 36px 20px 0;
  }

  .help-more-grid {
    grid-template-columns: 1fr;
  }

  .help-more-card {
    padding: 24px 21px;
    border-radius: 18px;
  }


  /* =======================================================
     PRIVACY + TERMS MOBILE
  ======================================================= */

  .privacy-hero,
  .terms-hero {
    padding: 58px 18px 50px;
  }

  .privacy-hero h1,
  .terms-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    line-height: 0.97;
  }

  .privacy-hero-desc,
  .terms-hero-desc {
    margin-top: 21px;
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .privacy-updated,
  .terms-updated {
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .privacy-layout,
  .terms-layout {
    padding-top: 30px;
    padding-bottom: 72px;
    gap: 32px;
  }

  .privacy-navigation,
  .terms-navigation {
    top: 72px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 12px 16px;
  }

  .privacy-navigation-title,
  .terms-navigation-title {
    font-size: 0.68rem;
  }

  .privacy-navigation a,
  .terms-navigation a {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .privacy-section,
  .terms-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    scroll-margin-top: 150px;
  }

  .privacy-section-number,
  .terms-section-number {
    min-width: 38px;
    height: 28px;
    margin-bottom: 13px;
  }

  .privacy-section h2,
  .terms-section h2 {
    margin-bottom: 17px;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .privacy-section > p,
  .terms-section > p {
    font-size: 0.95rem;
    line-height: 1.76;
  }

  .privacy-card-grid,
  .privacy-rights-grid,
  .terms-provider-grid,
  .privacy-provider-list {
    grid-template-columns: 1fr;
  }

  .privacy-card,
  .privacy-rights-grid article,
  .terms-provider-grid article,
  .privacy-provider-list article {
    padding: 21px;
    border-radius: 16px;
  }

  .privacy-list li,
  .terms-list li {
    padding: 14px 14px 14px 42px;
    font-size: 0.94rem;
  }

  .privacy-list li::before,
  .terms-list li::before {
    left: 14px;
    top: 13px;
  }

  .privacy-note,
  .privacy-highlight,
  .terms-note,
  .terms-warning {
    padding: 20px;
    border-radius: 15px;
  }

  .privacy-contact-card,
  .terms-contact-card {
    box-sizing: border-box;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 23px;
    border-radius: 19px;
  }

  .privacy-contact-card .btn-main,
  .terms-contact-card .btn-main {
    width: 100% !important;
    max-width: none;
    justify-content: center;
  }


  /* =======================================================
     FINAL CTA MOBILE
  ======================================================= */

  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    margin-bottom: 72px;
    padding: 32px 24px;
    gap: 27px;
    border-radius: 22px;
  }

  .about-final-cta h2,
  .contact-final-cta h2,
  .help-final-cta h2,
  .faq-contact-cta h2,
  .privacy-final-section h2,
  .terms-final-section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-final-cta .btn-main,
  .contact-final-cta .btn-main,
  .help-final-cta .btn-main,
  .faq-contact-cta .btn-main,
  .privacy-final-section .btn-main,
  .terms-final-section .btn-main,
  .about-final-cta .secondary-btn,
  .contact-final-cta .secondary-btn,
  .help-final-cta .secondary-btn,
  .faq-contact-cta .secondary-btn,
  .privacy-final-section .secondary-btn,
  .terms-final-section .secondary-btn {
    width: 100% !important;
    max-width: none;
    justify-content: center;
    text-align: center;
  }


  /* =======================================================
     FLOATING ↑ ↓
  ======================================================= */

  .page-jump-nav,
  .page-scroll-nav {
    right: 12px;
    bottom: 16px;
    gap: 7px;
  }

  .page-jump-btn,
  .page-scroll-btn {
    width: 43px;
    height: 43px;
    font-size: 1.12rem;
    box-shadow: 0 9px 24px rgba(42, 18, 7, 0.22);
  }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .about-hero,
  .about-intro,
  .about-process,
  .about-mission,
  .about-audiences,
  .about-services,
  .contact-options,
  .contact-content,
  .faq-category-nav,
  .faq-section,
  .faq-no-results,
  .help-benefits,
  .help-install-section,
  .help-desktop-section,
  .help-troubleshooting,
  .help-more-section,
  .privacy-layout,
  .terms-layout,
  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    width: calc(100% - 24px);
  }

  /* ABOUT */

  .about-hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  .about-hero-gallery {
    min-height: 390px;
    gap: 7px;
  }

  .about-photo {
    border-radius: 15px;
  }

  .about-audience-photo {
    min-height: 290px;
  }

  /* CONTACT */

  .contact-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  .contact-form-card,
  .contact-help-card {
    padding: 24px 18px;
  }

  /* FAQ */

  .faq-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .faq-hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.7rem);
  }

  /* HELP */

  .help-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .help-hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.7rem);
  }

  .help-phone {
    width: min(235px, 72vw);
  }

  .help-device-card {
    padding: 23px 18px;
  }

  /* PRIVACY / TERMS */

  .privacy-hero,
  .terms-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .privacy-hero h1,
  .terms-hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  .privacy-navigation,
  .terms-navigation {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.6rem;
  }

  .privacy-section > p,
  .terms-section > p {
    font-size: 0.93rem;
  }

  /* CTA */

  .about-final-cta,
  .contact-final-cta,
  .help-final-cta,
  .faq-contact-cta,
  .privacy-final-section,
  .terms-final-section {
    padding: 28px 20px;
    border-radius: 19px;
  }
}