.fcot {
  --fcot-ink: #172033;
  --fcot-muted: #667085;
  --fcot-line: #eadfe2;
  --fcot-accent: #df4564;
  --fcot-accent-dark: #bd2e4b;
  --fcot-blush: #fff6f7;
  --fcot-success: #157f62;
  --fcot-danger: #a7374b;
  width: min(1120px, calc(100% - 32px));
  margin: 44px auto 72px;
  color: var(--fcot-ink);
  font-family: inherit;
}

.fcot *, .fcot *::before, .fcot *::after { box-sizing: border-box; }

.fcot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--fcot-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(223,69,100,.11), transparent 32%),
    linear-gradient(145deg, #fff 0%, #fffafa 100%);
  box-shadow: 0 24px 70px rgba(55, 32, 39, .08);
}

.fcot-eyebrow {
  margin: 0 0 12px;
  color: var(--fcot-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fcot-hero h1,
.fcot-result h2,
.fcot-result h3 { color: var(--fcot-ink); }

.fcot-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: .98;
  letter-spacing: -.045em;
}

.fcot-hero__intro > p:not(.fcot-eyebrow) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--fcot-muted);
  font-size: 18px;
  line-height: 1.7;
}

.fcot-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  color: #455064;
  font-size: 13px;
  font-weight: 700;
}

.fcot-trust span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fce6eb;
  color: var(--fcot-accent-dark);
  font-size: 12px;
}

.fcot-form {
  position: relative;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(223,69,100,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px rgba(56, 35, 42, .09);
}

.fcot-field + .fcot-field { margin-top: 20px; }

.fcot-field label {
  display: block;
  margin-bottom: 8px;
  color: #293348;
  font-size: 14px;
  font-weight: 750;
}

.fcot-field input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #d8d2d4;
  border-radius: 13px;
  background: #fff;
  color: var(--fcot-ink);
  font: inherit;
  font-size: 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.fcot-field input::placeholder { color: #9a9295; }

.fcot-field input:focus {
  outline: none;
  border-color: var(--fcot-accent);
  box-shadow: 0 0 0 4px rgba(223,69,100,.12);
}

.fcot-field span {
  display: block;
  margin-top: 7px;
  color: var(--fcot-muted);
  font-size: 12px;
  line-height: 1.5;
}

.fcot-form button {
  width: 100%;
  min-height: 55px;
  margin-top: 26px;
  border: 1px solid var(--fcot-accent);
  border-radius: 13px;
  background: var(--fcot-accent);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 11px 25px rgba(223,69,100,.22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.fcot-form button:hover { background: var(--fcot-accent-dark); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(189,46,75,.25); }
.fcot-form button:focus-visible { outline: 3px solid rgba(223,69,100,.32); outline-offset: 3px; }

.fcot-form__privacy {
  margin: 14px 0 0;
  color: var(--fcot-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.fcot-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.fcot-notice {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 14px;
  line-height: 1.55;
}

.fcot-notice--error {
  border: 1px solid #f0c7cf;
  background: #fff3f5;
  color: var(--fcot-danger);
}

.fcot-result {
  scroll-margin-top: 118px;
  margin-top: 26px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--fcot-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(55,32,39,.07);
}

.fcot-result__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fcot-line);
}

.fcot-result h2 { margin: 0; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.03em; }
.fcot-result h3 { margin: 0 0 18px; font-size: 19px; }

.fcot-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.fcot-status--active { background: #fff0f3; color: var(--fcot-accent-dark); }
.fcot-status--complete { background: #eaf8f3; color: var(--fcot-success); }
.fcot-status--attention { background: #fff3e8; color: #9b5317; }

.fcot-result__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.fcot-result__panel {
  padding: 24px;
  border: 1px solid #ece6e8;
  border-radius: 17px;
  background: #fdfcfc;
}

.fcot-facts { margin: 0; }
.fcot-facts > div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid #eee8ea; }
.fcot-facts dt { color: var(--fcot-muted); }
.fcot-facts dd { margin: 0; color: var(--fcot-ink); font-weight: 750; text-align: right; }

.fcot-items { margin: 16px 0 0; padding: 0; list-style: none; }
.fcot-items li { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; color: #364055; }
.fcot-items strong { white-space: nowrap; }

.fcot-privacy-note { margin: 17px 0 0; color: var(--fcot-muted); font-size: 12px; line-height: 1.6; }

.fcot-result__help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 15px;
  background: var(--fcot-blush);
}

.fcot-result__help strong,
.fcot-result__help span { display: block; }
.fcot-result__help span { margin-top: 3px; color: var(--fcot-muted); font-size: 13px; }
.fcot-contact-trigger {
  appearance: none;
  margin: 0;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--fcot-accent-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.fcot-contact-trigger:hover { text-decoration: underline; }
.fcot-contact-trigger:focus-visible { outline: 3px solid rgba(223,69,100,.28); outline-offset: 4px; border-radius: 4px; }

.fcot-contact-fallback {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 16px 20px;
  border: 1px solid #f0d7de;
  border-radius: 13px;
  background: #fff9fa;
  color: var(--fcot-muted);
  font-size: 14px;
}
.fcot-contact-fallback[hidden] { display: none !important; }
.fcot-contact-fallback strong { color: var(--fcot-ink); }
.fcot-contact-fallback a { color: var(--fcot-accent-dark); font-weight: 750; }

@media (max-width: 820px) {
  .fcot { width: min(100% - 22px, 680px); margin-top: 24px; }
  .fcot-hero { grid-template-columns: 1fr; gap: 28px; padding: 28px 20px; border-radius: 21px; }
  .fcot-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .fcot-hero__intro > p:not(.fcot-eyebrow) { margin-top: 18px; font-size: 16px; }
  .fcot-form { padding: 22px 17px; }
  .fcot-result { padding: 24px 17px; border-radius: 20px; }
  .fcot-result__top { align-items: flex-start; flex-direction: column; }
  .fcot-result__grid { grid-template-columns: 1fr; }
  .fcot-result__panel { padding: 20px 16px; }
  .fcot-result__help { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .fcot *, .fcot *::before, .fcot *::after { scroll-behavior: auto !important; transition: none !important; }
}
