.bitcf-root,
.bitcf-root * {
  box-sizing: border-box;
}

.bitcf-root {
  --bitcf-green: #0b4f1f;
  --bitcf-green-2: #1f6b35;
  --bitcf-cream: #f7f8ef;
  --bitcf-border: #cfe2c5;
  --bitcf-text: #1d281f;
  --bitcf-muted: #607060;
  --bitcf-max: 1180px;
  --bitcf-h1: clamp(1.75rem, 3.2vw, 3.1rem);
  --bitcf-h1-mobile: clamp(1.45rem, 6.2vw, 2rem);
  --bitcf-h2: clamp(1.35rem, 2.2vw, 2.25rem);
  --bitcf-body: clamp(1rem, 1.1vw, 1.15rem);
  --bitcf-small: clamp(.82rem, .9vw, .95rem);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--bitcf-text);
  font-size: var(--bitcf-body);
}

.bitcf-shell {
  width: min(100%, var(--bitcf-max));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) clamp(18px, 4vw, 42px);
}

.bitcf-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  margin-bottom: clamp(22px, 3vw, 40px);
  padding: clamp(24px, 4vw, 54px);
  background: linear-gradient(135deg, #f6f8ef 0%, #eef5e8 100%);
  border: 1px solid var(--bitcf-border);
  border-radius: 28px;
}

.bitcf-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e3f0dc;
  color: var(--bitcf-green);
  font-size: var(--bitcf-small);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bitcf-hero h1 {
  margin: 0 0 14px;
  color: #081308;
  font-size: var(--bitcf-h1);
  line-height: 1.02;
  letter-spacing: .015em;
}

.bitcf-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--bitcf-muted);
  line-height: 1.7;
}

.bitcf-contact-card,
.bitcf-note-card,
.bitcf-form {
  border: 1px solid var(--bitcf-border);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 40px rgba(8, 37, 16, .06);
  border-radius: 24px;
}

.bitcf-contact-card {
  display: grid;
  gap: 9px;
  align-content: center;
  padding: clamp(18px, 2vw, 26px);
  color: var(--bitcf-muted);
}

.bitcf-contact-card strong {
  color: var(--bitcf-green);
  font-size: 1.1em;
}

.bitcf-alert {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.bitcf-alert-success {
  background: #e7f4df;
  border: 1px solid #b8d7aa;
  color: #174b1d;
}

.bitcf-alert-error {
  background: #fff0ec;
  border: 1px solid #edb7a6;
  color: #8d2d13;
}

.bitcf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.bitcf-form {
  padding: clamp(20px, 3vw, 34px);
}

.bitcf-grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

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

.bitcf-form label {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--bitcf-text);
  font-size: var(--bitcf-small);
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bitcf-form label span,
.bitcf-form label a {
  text-transform: none;
  letter-spacing: 0;
}

.bitcf-form label > span:first-of-type {
  color: #ba3f1d;
}

.bitcf-form input,
.bitcf-form select,
.bitcf-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfdec7;
  border-radius: 14px;
  background: #ffffff;
  color: var(--bitcf-text);
  font: inherit;
  font-size: var(--bitcf-body);
  padding: 13px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.bitcf-form textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.65;
}

.bitcf-form input:focus,
.bitcf-form select:focus,
.bitcf-form textarea:focus {
  border-color: var(--bitcf-green-2);
  box-shadow: 0 0 0 4px rgba(31, 107, 53, .12);
}

.bitcf-counter {
  margin: -10px 0 18px;
  color: var(--bitcf-muted);
  font-size: var(--bitcf-small);
  text-align: right;
}

.bitcf-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 14px 15px;
  border: 1px solid #dbe8d3;
  border-radius: 16px;
  background: #f9fbf5;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
}

.bitcf-consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.bitcf-consent a {
  color: var(--bitcf-green);
  font-weight: 900;
}

.bitcf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  background: var(--bitcf-green);
  color: #ffffff;
  cursor: pointer;
  font-size: var(--bitcf-body);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.bitcf-submit:hover,
.bitcf-submit:focus-visible {
  background: #073c17;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11, 79, 31, .22);
}

.bitcf-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.bitcf-note-card {
  padding: clamp(18px, 2vw, 24px);
}

.bitcf-note-card h2 {
  margin: 0 0 12px;
  color: var(--bitcf-green);
  font-size: var(--bitcf-h2);
  line-height: 1.1;
}

.bitcf-note-card p,
.bitcf-note-card li {
  color: var(--bitcf-muted);
  line-height: 1.65;
}

.bitcf-note-card ul {
  padding-left: 1.1em;
  margin: 0;
}

.bitcf-note-card li + li {
  margin-top: 8px;
}

.bitcf-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .bitcf-hero,
  .bitcf-layout,
  .bitcf-grid-2 {
    grid-template-columns: 1fr;
  }
  .bitcf-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .bitcf-shell {
    padding: clamp(16px, 4vw, 22px) 14px;
  }

  .bitcf-hero {
    padding: clamp(18px, 5vw, 24px);
  }

  .bitcf-hero h1 {
    font-size: var(--bitcf-h1-mobile);
    line-height: 1.08;
    letter-spacing: .005em;
    overflow-wrap: anywhere;
  }

  .bitcf-hero p {
    font-size: clamp(.94rem, 3.7vw, 1rem);
    line-height: 1.55;
  }

  .bitcf-kicker {
    font-size: clamp(.72rem, 3vw, .82rem);
    letter-spacing: .09em;
  }

  .bitcf-hero,
  .bitcf-form,
  .bitcf-note-card {
    border-radius: 20px;
  }
}

.bitcf-recaptcha-wrap {
  margin: 12px 0 18px;
  max-width: 100%;
  overflow-x: auto;
}

.bitcf-recaptcha-note {
  margin: 10px 0 16px;
  color: var(--bitcf-muted);
  font-size: var(--bitcf-small);
  line-height: 1.55;
}

.bitcf-submit:disabled {
  cursor: wait;
  opacity: .7;
}
