@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  scroll-behavior: smooth;
}

:root {
  --accent: #ffb135;
  --accent-2: #ff774e;
}

* { box-sizing: border-box; }

/* ============ TOP BAR ============ */
.fp-topbar {
  width: 100%;
  padding: 1.4rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.fp-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06rem;
  color: #fff;
}

.fp-logo img {
  width: 3.6rem;
}

.fp-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.55rem 1rem;
  border-radius: 2rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.fp-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============ HERO ============ */
.fp-hero {
  position: relative;
  padding: 3rem 6vw 2rem;
  overflow: hidden;
}

.fp-hero-glow {
  position: absolute;
  left: 50%;
  top: -6rem;
  transform: translateX(-50%);
  width: 55rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(255, 177, 53, 0.14) 0%, rgba(255, 119, 78, 0.04) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.fp-eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fp-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.fp-heading {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin: 0;
  color: #fff;
  max-width: 40rem;
}

.fp-heading span {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 900;
  display: block;
}

.fp-sub {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34rem;
  margin-top: 1.1rem;
}

/* ============ LAYOUT ============ */
.fp-body {
  position: relative;
  max-width: 74rem;
  margin: 3rem auto 6rem;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---- side panel ---- */
.fp-side {
  background: linear-gradient(160deg, #1c1c1c, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.3rem;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}

.fp-side-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.fp-side-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fp-side-item:first-of-type { border-top: none; }

.fp-side-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 177, 53, 0.35);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fp-side-icon svg { width: 1.05rem; height: 1.05rem; }

.fp-side-text-h {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.fp-side-text-p {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.fp-side-contact {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.fp-side-contact a {
  color: var(--accent);
  text-decoration: none;
}

/* ---- pricing toggle (solution provider pass) ---- */
.fp-price-box {
  border: 1px solid rgba(255, 177, 53, 0.35);
  background: rgba(255, 177, 53, 0.06);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
}

.fp-price-top label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.fp-price-top span sup {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.fp-price-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fp-price-list li {
  font-family: 'Archivo', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1.1rem;
  position: relative;
}

.fp-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============ FORM CARD ============ */
.fp-card {
  background: linear-gradient(160deg, #1c1c1c, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  padding: 2.4rem;
}

.fp-message {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.6rem;
}

.fp-message.is-error {
  color: #ff7e7e;
}

.fp-message.is-success {
  color: var(--accent);
}

.fp-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.fp-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fp-field.fp-span2 { grid-column: 1 / -1; }

.fp-field label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.fp-field input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.fp-field input::placeholder { color: rgba(255, 255, 255, 0.25); }

.fp-field input:focus {
  border-color: var(--accent);
  background: rgba(255, 177, 53, 0.05);
}

.fp-field.has-error input {
  border-color: #ff7e7e;
}

/* ---- interest checkbox group ---- */
.fp-interest {
  margin-top: 1.8rem;
}

.fp-interest-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.9rem;
}

.fp-interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.fp-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.fp-chip:hover { border-color: rgba(255, 177, 53, 0.4); }

.fp-chip input { display: none; }

.fp-chip .fp-checkbox {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fp-chip input:checked + .fp-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}

.fp-chip input:checked + .fp-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #1a0d00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fp-chip span {
  font-family: 'Archivo', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- consent checkboxes ---- */
.fp-consent {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fp-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.fp-consent input { display: none; }

.fp-consent .fp-checkbox {
  margin-top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fp-consent input:checked + .fp-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}

.fp-consent input:checked + .fp-checkbox::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #1a0d00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fp-consent.has-error .fp-checkbox {
  border-color: #ff7e7e;
}

.fp-consent-text {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- submit ---- */
.fp-submit {
  margin-top: 2.2rem;
  width: 100%;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #000;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.fp-submit:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 24px rgba(255, 119, 78, 0.3);
}

.fp-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---- success state ---- */
.fp-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.fp-success.is-shown { display: block; }
.fp-card.is-submitted .fp-form { display: none; }

.fp-success-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255, 177, 53, 0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}

.fp-success-icon svg { width: 1.6rem; height: 1.6rem; }

.fp-success-h {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.6rem;
}

.fp-success-p {
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 24rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.fp-footer {
  padding: 2rem 6vw 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fp-footer-copy {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.fp-footer-copy a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 600;
}

.fp-footer-copy a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .fp-body {
    grid-template-columns: 1fr;
  }
  .fp-side { position: static; }
  .fp-inputs { grid-template-columns: 1fr; }
  .fp-interest-grid { grid-template-columns: 1fr; }
  .fp-card { padding: 1.6rem; }
}