:root {
  --navy: #1B3563;
  --navy-dark: #142748;
  --teal: #0F6B78;
  --bg: #F4F6F9;
  --card-bg: #FFFFFF;
  --text: #1a1a1a;
  --muted: #666666;
  --border: #E3E7EE;
  --danger: #B3261E;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Calibri, "Segoe UI", Candara, Optima, Arial, sans-serif;
  min-height: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.brand-header img {
  height: 44px;
  width: auto;
}

.card {
  width: 100%;
  max-width: 480px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(27, 53, 99, 0.08);
  padding: 36px 32px;
}

.card.wide {
  max-width: 620px;
}

h1 {
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}

h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
}

.subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 26px;
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 107, 120, 0.15);
}

input.error {
  border-color: var(--danger);
}

.error-msg {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.error-msg.show { display: block; }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button.submit-btn {
  width: 100%;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button.submit-btn:hover { background: var(--navy-dark); }
button.submit-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.spinner.show { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  color: var(--danger);
  display: none;
}
.form-status.show { display: block; }

.fine-print {
  font-size: 12px;
  color: #9199a8;
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.consult-box {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  text-align: center;
  margin-top: 22px;
}
.consult-box a { color: #fff; font-weight: bold; }

/* watch.html specifics */
.video-slot {
  background: var(--navy-dark);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #cfd8ea;
  text-align: center;
  padding: 24px;
  margin-bottom: 22px;
}

.video-slot .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-slot p {
  margin: 0;
  font-size: 14px;
  max-width: 380px;
  line-height: 1.5;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.checklist li svg { flex: none; margin-top: 2px; }
