/* 
 * PORT CLINTON HOST INTAKE - PREMIUM GLASS STYLING
 */

.pc-intake {
  background-color: #020617;
  padding-top: calc(var(--pc-nav-h) + 2rem);
  padding-bottom: 6rem;
  min-height: 100vh;
}

.pc-intake .intake-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.pc-intake .intake-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 1rem 0;
  color: #fff;
}

.pc-intake .intake-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- Layout --- */
.pc-intake .intake-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .pc-intake .intake-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- Tier Cards --- */
.pc-intake .col-header h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: #fff;
}

.pc-intake .section-helper-line {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.pc-intake .tier-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-intake .intake-tier-card {
  width: 100%;
  padding: 20px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  font-family: inherit;
}

.pc-intake .intake-tier-card:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.pc-intake .intake-tier-card.is-selected {
  background: rgba(239, 68, 68, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.pc-intake .intake-tier-card .t-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-intake .intake-tier-card .t-name { font-size: 1rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.pc-intake .intake-tier-card .t-price { font-size: 1.25rem; font-weight: 950; color: #fff; }
.pc-intake .intake-tier-card .t-price small { font-size: 0.75rem; opacity: 0.5; margin-left: 2px; }

.pc-intake .intake-tier-card .t-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-intake .intake-tier-card .t-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pc-intake .intake-tier-card.is-selected .t-name { color: var(--primary); }

.pc-intake .selected-summary-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-intake .summary-label { font-size: 0.75rem; font-weight: 900; color: #64748b; text-transform: uppercase; letter-spacing: 0.1em; }
.pc-intake .summary-value { font-size: 1rem; font-weight: 950; color: var(--primary); }

/* --- Form --- */
.pc-intake .glass-form-card {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.pc-intake .trust-micro { font-size: 0.85rem; color: #64748b; font-weight: 600; margin-bottom: 2.5rem; }

.pc-intake .intake-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .pc-intake .intake-form-grid { grid-template-columns: 1fr; }
}

.pc-intake .intake-span-2 { grid-column: 1 / -1; }

.pc-intake .intake-form-group { display: flex; flex-direction: column; gap: 8px; }
.pc-intake .intake-form-group label {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.pc-intake .intake-form-group input,
.pc-intake .intake-form-group select,
.pc-intake .intake-form-group textarea {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.pc-intake .intake-form-group textarea { height: auto; min-height: 120px; padding: 16px; }

.pc-intake .intake-form-group input:focus,
.pc-intake .intake-form-group select:focus,
.pc-intake .intake-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.pc-intake .intake-consent-block { margin: 1rem 0; }
.pc-intake .intake-custom-checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.pc-intake .intake-custom-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.pc-intake .intake-checkmark {
  width: 20px; height: 20px; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; flex-shrink: 0;
  position: relative; margin-top: 2px; transition: all 0.2s;
}
.pc-intake .intake-custom-checkbox input:checked ~ .intake-checkmark { background: var(--primary); border-color: var(--primary); }
.pc-intake .intake-checkmark:after {
  content: ""; position: absolute; display: none;
  left: 7px; top: 3px; width: 5px; height: 10px;
  border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.pc-intake .intake-custom-checkbox input:checked ~ .intake-checkmark:after { display: block; }
.pc-intake .intake-consent-text { font-size: 0.85rem; color: #94a3b8; font-weight: 500; line-height: 1.4; }

.pc-intake .intake-form-actions { margin-top: 1.5rem; text-align: center; }
.pc-intake .intake-btn-submit {
  width: 100%; padding: 1.25rem; background: var(--primary); border: none; border-radius: 16px;
  color: #fff; font-size: 1rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}
.pc-intake .intake-btn-submit:disabled { opacity: 0.3; cursor: not-allowed; transform: none !important; box-shadow: none; filter: grayscale(0.5); }
.pc-intake .intake-btn-submit:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4); }

.pc-intake .intake-submit-info { font-size: 0.75rem; color: #64748b; margin-top: 1rem; font-weight: 700; }

.pc-intake .intake-error-inline { color: #ef4444; font-size: 0.85rem; font-weight: 700; margin-top: 1rem; text-align: center; display: block; }

/* Success Panel */
.pc-intake .intake-success-panel { text-align: center; padding: 2rem 0; animation: intakeFadeIn 0.5s ease forwards; }
@keyframes intakeFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.pc-intake .intake-success-icon { width: 80px; height: 80px; background: #10b981; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.pc-intake .intake-success-icon i { width: 40px; height: 40px; }
.pc-intake .intake-success-panel h2 { font-size: 2.25rem; font-weight: 950; color: #fff; margin-bottom: 1rem; }
.pc-intake .intake-success-panel p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 3rem; line-height: 1.6; }
.pc-intake .intake-success-actions { display: flex; gap: 1.5rem; justify-content: center; }
.pc-intake .intake-btn-back { background: #fff; color: #000 !important; padding: 1rem 2.5rem; border-radius: 12px; font-weight: 900; text-transform: uppercase; font-size: 0.85rem; }
.pc-intake .intake-btn-reset { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.1); padding: 1rem 2.5rem; border-radius: 12px; font-weight: 900; text-transform: uppercase; font-size: 0.85rem; cursor: pointer; }

/* Minimal Modal Styles for Footer */
#minimal-modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999;
  align-items: center; justify-content: center; padding: 2rem; backdrop-filter: blur(10px);
}
#minimal-modal.visible { display: flex; }
.modal-content {
  background: var(--bg-deep); border: 1px solid var(--border); border-radius: 24px;
  padding: 3rem; max-width: 500px; width: 100%; position: relative;
}
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  color: var(--text-muted); cursor: pointer;
}