/* Buff Fuel Kiosk — marketing page */

.kiosk-page {
  --blue: #1b4f7a;
  --gold: #f5a623;
  --orange: #e85d04;
  --cream: #fff8ed;
  --green: #0d7a3e;
}

.military-vet-offer,
.military-vet-banner {
  background: linear-gradient(135deg, #1a3d2e 0%, #0d7a3e 55%, #1b4f7a 100%);
  color: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 16px 0 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.military-vet-offer h3,
.military-vet-banner strong {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.military-vet-offer p,
.military-vet-banner {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.military-vet-offer a,
.military-vet-banner a {
  color: #ffe08a;
  font-weight: 700;
  text-decoration: underline;
}

.military-vet-offer a:hover,
.military-vet-banner a:hover {
  color: #fff;
}

.kiosk-page .wrap {
  max-width: 960px;
  padding: 0 20px 48px;
}

.kiosk-page .brand-header {
  padding: 24px 0 12px;
}

.kiosk-header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.kiosk-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.kiosk-header-btn {
  margin: 0;
  padding: 10px 18px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.kiosk-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.kiosk-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid transparent;
}

.kiosk-nav a:hover {
  border-color: var(--gold);
  background: #fff;
}

/* Hero */

.hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--blue);
  box-shadow: 6px 6px 0 var(--blue);
  margin: 20px 0 28px;
}

.hero-product-live {
  background: linear-gradient(180deg, #e8eef3 0%, #cfd9e3 100%);
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Shrink-wrap photo so LCD % coords track the real image pixels */
.hero-product-live .product-live {
  width: fit-content;
  max-width: 100%;
}

.hero-product-live .product-live > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(72vh, 620px);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(27, 79, 122, 0.92) 0%, rgba(27, 79, 122, 0.75) 55%, rgba(232, 93, 4, 0.85) 100%);
  color: #fff;
  padding: 28px 24px 32px;
}

.hero-screen-hint {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.95;
}

.hero-overlay .screen-demo-dots {
  margin: 0 0 16px;
}

.hero-overlay .screen-demo-dots button {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-overlay .screen-demo-dots button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-overlay .screen-demo-dots button.is-active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.hero-overlay h1 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero-overlay .tagline {
  margin: 0 0 16px;
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 36em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.price-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--blue);
  border-radius: 14px;
  padding: 12px 18px;
  border: 2px solid var(--gold);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.price-badge .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.price-badge .note {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
  color: #555;
}

/* Sections */

.kiosk-section {
  margin: 32px 0;
}

.kiosk-section h2 {
  color: var(--blue);
  font-size: 1.45rem;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold);
}

.kiosk-section .lead {
  font-size: 1.05rem;
  color: #444;
  margin: 0 0 20px;
  line-height: 1.55;
}

/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 3px 3px 0 var(--blue);
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}

.feature-card .icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Two-column layout */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--blue);
  box-shadow: 4px 4px 0 var(--blue);
  object-fit: contain;
}

/* Case study / guide product photos — natural size, never stretch */
.case-study-figure {
  margin: 12px 0 20px;
  padding: 0;
  max-width: 320px;
  width: fit-content;
  line-height: 0;
}

.case-study-photo,
img.case-study-photo {
  display: block;
  width: 100% !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center top;
  border-radius: 12px;
  background: linear-gradient(180deg, #e8eef3 0%, #cfd9e3 100%);
  border: 2px solid #d0e4f4;
}

@media (max-width: 700px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* Comparison table */

.compare-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--blue);
  box-shadow: 3px 3px 0 var(--blue);
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.compare-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .buff-col {
  background: #f0faf4;
  font-weight: 600;
}

.compare-table .win {
  color: var(--green);
  font-weight: 700;
}

.compare-table .lose {
  color: #888;
}

/* Pricing block */

.pricing-block {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 3px solid var(--blue);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--blue);
  text-align: center;
}

.pricing-block .big-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  margin: 8px 0;
  line-height: 1;
}

.pricing-block .includes {
  text-align: left;
  max-width: 480px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
}

.pricing-block .includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px dashed #ddd;
  line-height: 1.4;
}

.pricing-block .includes li:last-child {
  border-bottom: none;
}

/* Inline checkmark in HTML — do not use CSS content: (encoding breaks it) */
.pricing-block .includes .check {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.35;
  width: 1.1em;
  text-align: center;
}

.tier-table {
  width: 100%;
  margin-top: 20px;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.tier-table th,
.tier-table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: center;
}

.tier-table th {
  background: var(--blue);
  color: #fff;
}

.tier-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 16px;
  line-height: 1.5;
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 2px 2px 0 var(--blue);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.step p {
  margin: 0;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

/* CTA footer */

.kiosk-cta {
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 4px 4px 0 var(--orange);
}

.kiosk-cta h2 {
  color: #fff;
  border: none;
  margin: 0 0 8px;
  padding: 0;
}

.kiosk-cta p {
  margin: 0 0 20px;
  opacity: 0.9;
}

.kiosk-cta .btn {
  margin: 4px;
}

.kiosk-cta .btn.secondary {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.kiosk-page footer {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-size: 0.85rem;
}

.kiosk-page footer a {
  color: var(--blue);
  font-weight: 700;
}

/* Inquiry / order form */

.inquiry-section {
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--blue);
  margin: 32px 0;
}

.inquiry-section h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 1.45rem;
}

.inquiry-section .lead {
  margin: 0 0 20px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.inquiry-email-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.inquiry-email-bar a {
  font-weight: 800;
  color: var(--blue);
  word-break: break-all;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px) {
  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }
}

.inquiry-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  margin: 12px 0 4px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
}

.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.inquiry-form .btn {
  margin-top: 16px;
  width: 100%;
  max-width: 320px;
}

.inquiry-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.inquiry-status.success {
  background: #e8f8ef;
  border: 2px solid var(--green);
  color: #0a5c2e;
}

.inquiry-status.error {
  background: #fdecea;
  border: 2px solid var(--red, #c0392b);
  color: #922b21;
}

.inquiry-status.info,
.inquiry-status.pending {
  background: #eef6fc;
  border: 2px solid var(--blue);
  color: var(--blue);
}

.inquiry-alt {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #666;
  text-align: center;
}

.highlight-orange {
  color: var(--orange);
  font-weight: 800;
}

/* Zero recurring cost callout */

.zero-recurring {
  background: linear-gradient(135deg, #e8f8ef 0%, #fff8ed 100%);
  border: 3px solid var(--green);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 24px 0;
  box-shadow: 3px 3px 0 var(--green);
}

.zero-recurring h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.15rem;
}

.zero-recurring p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
}

.zero-recurring ul {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.5;
}

.live-install-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 8px;
}

@media (min-width: 800px) {
  .live-install-photos {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.live-install-photos figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.live-install-photos img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #f0ebe3;
}

@media (min-width: 800px) {
  .live-install-photos img {
    height: 280px;
  }
}

.live-install-photos figcaption {
  padding: 8px 12px 12px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* LCD animation styles live in buff-box-live.css */
