/* Base layout */
body {
  background-color: #f8f9fa;
  font-family: 'Karla', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container-fluid {
  display: flex;
  flex-direction: column-reverse; /* Mobile: form on top */
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container-fluid { flex-direction: row; }
}

/* Panels */
.panel {
  flex: 1 1 50%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .panel { min-height: 100vh; }
}

.panel-inner {
  width: 100%;
  max-width: 440px;
}

/* Left hero */
.nfc-img{
  max-width: 380px;
  margin: 0 auto 14px auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.16));
}

.nfc-headline{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.nfc-sub{
  color: #333;
  font-size: 1rem;
  margin: 0 auto 12px auto;
  line-height: 1.45;
  max-width: 390px;
}

.nfc-bullets{
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 800;
  color: #111;
  margin-top: 6px;
}

/* Price box */
.nfc-pricebox{
  margin: 14px auto 10px auto;
  max-width: 380px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
}

.nfc-price{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.nfc-price .label{
  font-weight: 900;
  color: #111;
}

.nfc-price .price{
  font-weight: 900;
  font-size: 1.35rem;
  color: #111;
}

.nfc-mini{
  margin-top: 6px;
  font-size: .9rem;
  color: rgba(0,0,0,.65);
  line-height: 1.35;
}

/* Left CTA */
.nfc-cta-row{
  margin-top: 10px;
}

.nfc-cta{
  width: 100% !important;
  border-radius: 999px !important;
  padding: .8rem 1rem !important;
  font-weight: 900 !important;
  letter-spacing: .2px !important;
}

.nfc-note{
  margin-top: 8px;
  font-size: .9rem;
  color: rgba(0,0,0,.55);
}

.nfc-fine{
  margin-top: 10px;
  font-size: .82rem;
  color: rgba(0,0,0,.55);
}

/* Bounce for card */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.bounce { animation: bounce 1.6s infinite ease-in-out; }

/* Right panel polish */
.glow{
  border-radius: 1rem;
  transition: box-shadow 0.35s ease-in-out, transform .2s ease;
}
@media (max-width: 768px) {
  .glow { box-shadow: 0 0 10px rgba(0, 123, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.06); }
}
@media (min-width: 769px) {
  .glow { box-shadow: 0 0 26px rgba(0, 123, 255, 0.22), 0 10px 22px rgba(0, 0, 0, 0.08); }
}

/* Title */
.hollalink-title{
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 auto 8px auto;
  text-align: center;
  color: #111;
  text-shadow: 0 0 10px rgba(0,255,255,.18);
}

.hollalink-subtext{
  color: rgba(0,0,0,.60);
  font-weight: 800;
}

/* Buttons + inputs */
.btn {
  width: 100%;
  border-radius: 999px;
  padding: 0.78rem;
  font-weight: 900;
  letter-spacing: .2px;
}

input.form-control{
  border-radius: 999px;
  padding: 0.78rem;
}

/* Controlled neon */
.panel-inner .btn.btn-danger,
.panel-inner .btn.btn-primary{
  background: #111 !important;
  color: #00ffff !important;
  border: 2px solid rgba(0,255,255,.75) !important;
  box-shadow: 0 0 10px rgba(0,255,255,.22);
  transition: transform .12s ease, box-shadow .18s ease, filter .18s ease;
}

.panel-inner .btn.btn-danger:hover,
.panel-inner .btn.btn-primary:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(0,255,255,.35), 0 0 30px rgba(0,255,255,.22);
}

.panel-inner a{
  text-decoration: none !important;
}

.tiny-legal{
  font-size: .82rem;
  color: rgba(0,0,0,.55);
}
.tiny-legal a{
  color: #0d6efd;
  font-weight: 800;
}
.tiny-legal a:hover{
  text-decoration: underline !important;
}
.nfc-pricebox:hover {
  cursor: pointer;
  filter: brightness(1.05);
}
