/* Bookwits Resources – shared styles (generated) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* MUST be first */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* Best default for pure HTML pages */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html,
body {
  font-family: var(--font-sans);
  color: #000;
}

/* Optional: if some pages still render inside a Vuetify app shell */
.v-application {
  font-family: var(--font-sans) !important;
  color: #000 !important;
}

:root {
  --main-color: #155f44;
  --main-bg: rgba(21, 95, 68, 0.08);
  --main-light: rgba(21, 95, 68, 0.06);
  --main-border: rgba(21, 95, 68, 0.18);
  --main-border-md: rgba(21, 95, 68, 0.25);
  --light-gray: #e7e7e9;
  --gray: #6b7280;
  --white: #fff;
  --off-white: #fafafa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
.page-wrap {
  display: flex;
  width: 100%;
  margin-top: 40px;
}
.side {
  width: 25%;
}
.content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 900px) {
  .side {
    width: 5%;
  }
  .content {
    width: 90%;
  }
}

h1,
h2,
h3 {
  font-family: 'Roboto', var(--font-sans);
}

span {
  font-family: 'Roboto', var(--font-sans);
}

/* Utility (Vuetify-ish) */
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.width100 {
  width: 100%;
}
.cursor-pointer {
  cursor: pointer;
}

.mt-2 {
  margin-top: 8px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-16 {
  margin-top: 64px;
}
.mb-16 {
  margin-bottom: 64px;
}

.pl-4 {
  padding-left: 16px;
}
.pl-5 {
  padding-left: 20px;
}
.pa-5 {
  padding: 20px;
}
.pa-6 {
  padding: 24px;
}

.ga-1 {
  gap: 4px;
}
.ga-2 {
  gap: 8px;
}
.ga-3 {
  gap: 12px;
}
.ga-4 {
  gap: 16px;
}
.ga-5 {
  gap: 20px;
}
.ga-6 {
  gap: 24px;
}
.ga-8 {
  gap: 32px;
}
.ga-14 {
  gap: 56px;
}

/* Typography helpers */
.gray {
  color: var(--gray);
}
.f1 {
  font-size: 60px;
}
.f3 {
  font-size: 20px;
}
.f5 {
  font-size: 16px;
}
.f6 {
  font-size: 15px;
}
.f7 {
  font-size: 13px;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw800 {
  font-weight: 800;
}
.fw900 {
  font-weight: 900;
}

/* Common components */
.back-link,
a.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
}
.back-link:hover {
  color: #111;
}

.icon-svg svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gray);
}
.icon-bubble,
.iconBubble {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-bubble .icon-svg svg,
.iconBubble .icon-svg svg {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--main-color);
}
.bw-ico {
  display: block;
  width: 18px;
  height: 18px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  color: #155f44;
}
/* Chips */
.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip,
.tagChip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.chip-green {
  background: rgba(21, 95, 68, 0.08);
  color: var(--main-color);
}
.chip-outline {
  background: #fff;
  border: 1px solid var(--light-gray);
  color: var(--main-color);
}

/* Boxes */
.box {
  border: 1px solid var(--light-gray);
  border-radius: 18px;
  padding: 24px;
}
.box-gray {
  background: var(--off-white);
}
.box-white {
  background: var(--white);
}
.secondary-border {
  border: 1px solid var(--light-gray);
  border-radius: 18px;
}

/* Images */
.doc-img {
  display: block;
  margin: 16px auto 0;
  width: 80%;
  border-radius: 10px;
}
.img-full {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Quick nav buttons */
.nav-btn,
.navBtn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 14px;
  border: 1px solid var(--light-gray);
  background: #fff;
  color: var(--main-color);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.nav-btn:hover,
.navBtn:hover {
  background: var(--main-bg);
  border-color: var(--main-border);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--light-gray);
  border: none;
  margin: 4px 0;
}

/* Tip box */
.tip-box,
.tipBox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(21, 95, 68, 0.06);
  border: 1px solid rgba(21, 95, 68, 0.18);
  font-size: 15px;
  color: var(--gray);
}
.tip-box .icon-svg svg,
.tipBox .icon-svg svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--main-color);
}

/* Accordion */
.accordion {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--light-gray);
}
.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.accordion-btn:hover {
  background: #fafafa;
}
.accordion-btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-icon-wrap,
.faqIconWrap {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-icon-wrap svg,
.faqIconWrap svg {
  width: 18px;
  height: 18px;
  color: var(--main-color);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chevron {
  width: 18px;
  height: 18px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion-item.open .chevron {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 0 20px 20px;
}
.accordion-item.open .accordion-body {
  display: block;
}
.accordion-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}
.accordion-content ol,
.accordion-content ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.accordion-content li {
  font-size: 15px;
  color: var(--gray);
}
.section-label {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
}

/* CTA buttons */
.btnPrimary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}
.btnPrimary:hover,
.btn-primary:hover {
  background: #333;
}
.btnSecondary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  font-weight: 900;
  font-size: 15px;
}
.btnSecondary:hover,
.btn-secondary:hover {
  background: #f5f5f5;
}

/* Callouts */
.callout {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--main-border-md);
}
.callout-green {
  background: rgba(21, 95, 68, 0.06);
  border-color: rgba(21, 95, 68, 0.25);
}

/* --- Page-specific classes merged from Vue --- */
.sectionTitle {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 900px) {
  .sectionTitle {
    font-size: 34px;
  }
}

.simpleRow {
  border: 1px solid #e7e7e9;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}

.stepDot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
  color: #155f44;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.sectionCard {
  border-radius: 16px;
  background: #fff;
}

.sectionCardTitle {
  font-size: 22px;
  letter-spacing: -0.01em;
}

.checklistUl li {
  margin-bottom: 10px;
}

/* Teal callout */
.tealQBox {
  border: 1px solid rgba(21, 95, 68, 0.25);
  background: rgba(21, 95, 68, 0.06);
  border-radius: 18px;
  padding: 22px;
}

.emailBox {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

/* CTA block */
.ctaBlock {
  border: 1px solid rgba(21, 95, 68, 0.25);
  background: rgba(21, 95, 68, 0.06);
  border-radius: 18px;
  padding: 34px;
}

@media (max-width: 900px) {
  .ctaBlock {
    padding: 18px;
  }
}

.ctaTitle {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .ctaTitle {
    font-size: 34px;
  }
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.btnArrow {
  font-size: 18px;
  line-height: 1;
}

/* Bottom CTA typography */
.ctaBottomTitle {
  font-size: 44px;
}

.ctaBottomSub {
  font-size: 16px;
}

@media (max-width: 900px) {
  .ctaBottomTitle {
    font-size: 32px;
  }
}

.docTitle {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

@media (max-width: 900px) {
  .docTitle {
    font-size: 38px;
  }
}

.docH2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 900px) {
  .docH2 {
    font-size: 28px;
  }
}

.iconBubble {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
}

.navBtn {
  border-radius: 14px;
  text-transform: none;
  font-weight: 700;
  color: var(--main-color);
}

.stepRow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stepNum {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
  color: #155f44;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tipBox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(21, 95, 68, 0.06);
  border: 1px solid rgba(21, 95, 68, 0.18);
}

.faqPanels {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e7e9;
}

.faqIconWrap {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottomCta {
  border-radius: 18px;
  background: rgba(21, 95, 68, 0.06);
  border: 1px solid rgba(21, 95, 68, 0.25);
  padding: 28px;
}

.bottomCtaTitle {
  font-size: 28px;
  font-weight: 900;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 900;
}

.btnArrow {
  font-size: 18px;
  line-height: 1;
}

.docTitle {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

@media (max-width: 900px) {
  .docTitle {
    font-size: 38px;
  }
}

.docH2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 900px) {
  .docH2 {
    font-size: 28px;
  }
}

.iconBubble {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(21, 95, 68, 0.1);
}

.navBtn {
  border-radius: 14px;
  text-transform: none;
  font-weight: 700;
  color: var(--main-color);
}

.tagChip {
  border-radius: 999px;
  text-transform: none;
  font-weight: 700;
  color: var(--main-color);
  border-color: #e7e7e9 !important;
}

.tipBox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(21, 95, 68, 0.06);
  border: 1px solid rgba(21, 95, 68, 0.18);
}

.bottomCta {
  border-radius: 18px;
  background: rgba(21, 95, 68, 0.06);
  border: 1px solid rgba(21, 95, 68, 0.25);
  padding: 28px;
}

.bottomCtaTitle {
  font-size: 28px;
  font-weight: 900;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 900;
}

.btnArrow {
  font-size: 18px;
  line-height: 1;
}

.typeCard {
  border-radius: 16px;
  background: #fafafa;
}
