/* ============================================================
   FIX LAB v3 — FULL STYLESHEET
   Dark promo theme · PayPal · WhatsApp
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #06090f;
  color: #e8eaf0;
}

/* ---- CSS Variables ---- */
:root {
  --orange: #ff7300;
  --orange-hot: #ff5500;
  --orange-glow: rgba(255,115,0,.35);
  --blue-glow: rgba(0,140,255,.28);
  --dark: #06090f;
  --dark2: #0d1220;
  --dark3: #111927;
  --border: rgba(255,115,0,.22);
  --border-subtle: rgba(255,255,255,.1);
  --text: #e8eaf0;
  --text-muted: #8a95a8;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5), 0 2px 8px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float svg { width: 36px; height: 36px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.65), 0 2px 8px rgba(0,0,0,.4); }

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #111;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  height: 88px;
  background: rgba(6,9,15,.96);
  backdrop-filter: blur(12px);
  color: #fff;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  padding: 0 42px;
  border-bottom: 2px solid var(--border);
  gap: 26px;
  position: sticky;
  top: 0;
  z-index: 800;
}

.logo-area { display: flex; align-items: center; }
.logo-area img { width: 180px; max-height: 70px; object-fit: contain; display: block; }

.nav { display: flex; gap: 32px; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: .5px; }
.nav a { color: rgba(255,255,255,.75); text-decoration: none; padding: 8px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav a.active, .nav a:hover { color: var(--orange); border-color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 12px; }
.phone-circle { width: 44px; height: 44px; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); display: grid; place-items: center; font-size: 20px; }
.phone-text strong { display: block; font-size: 22px; line-height: 1; font-weight: 900; color: #fff; }
.phone-text strong span { color: var(--orange); }
.phone-text small { font-size: 11px; color: var(--text-muted); }
.start-button { margin-left: 10px; background: linear-gradient(135deg, #ff7d00, #f04d00); color: #fff; text-decoration: none; text-transform: uppercase; font-weight: 900; font-size: 13px; letter-spacing: .5px; padding: 13px 22px; border-radius: 6px; box-shadow: 0 4px 18px rgba(255,115,0,.35); transition: transform .15s, box-shadow .15s; }
.start-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,115,0,.45); }

/* ============================================================
   HERO: PROMO FULL WIDTH
   ============================================================ */




  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
}






/* ============================================================
   DEVICES SECTION
   ============================================================ */
.devices-section {
  padding: 60px 42px 50px;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255,115,0,.1), transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(0,140,255,.1), transparent 40%),
    var(--dark2);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: 'Barlow Condensed', Impact, Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  color: #fff;
}
.accent-line { display: inline-block; width: 64px; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); border-radius: 2px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 15px; margin: 0 0 32px; }

/* ---- Tile Grid ---- */
.device-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.device-tile { position: relative; cursor: pointer; }

.tile-inner {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: border-color .18s, box-shadow .18s, transform .18s;
  display: flex;
  flex-direction: column;
}
.device-tile:hover .tile-inner,
.device-tile.tile-open .tile-inner {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 12px 36px rgba(255,115,0,.3);
  transform: translateY(-5px);
}

.tile-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0d1525, #0a1020);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tile-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.device-tile:hover .tile-img-wrap img { transform: scale(1.07); }

.tile-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  min-height: 58px;
  background: rgba(0,0,0,.5);
  border-top: 1px solid rgba(255,115,0,.2);
}
.tile-label strong { color: #fff; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .6px; line-height: 1.15; }
.tile-arrow { color: var(--orange); font-size: 22px; font-style: normal; font-weight: 900; transition: transform .22s; display: inline-block; line-height: 1; }
.device-tile.tile-open .tile-arrow { transform: rotate(90deg); }
.tile-quote-badge { font-style: normal; background: linear-gradient(135deg, #ff7d00, #f04d00); color: #fff; font-size: 10px; font-weight: 900; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; letter-spacing: .5px; }

/* ---- Dropdown ---- */
.tile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
  position: relative;
  z-index: 50;
  background: var(--dark3);
  border: 1px solid var(--orange);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  margin-top: -2px;
}
.dropdown-inner { padding: 14px 16px 18px; }
.dropdown-hint { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; }

.model-list { list-style: none; margin: 0; padding: 0; max-height: 320px; overflow-y: auto; }
.model-list::-webkit-scrollbar { width: 5px; }
.model-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 3px; }
.model-list::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

.model-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  border-radius: 8px;
  color: var(--text);
  transition: background .14s, color .14s;
  gap: 8px;
}
.model-list li:last-child { border-bottom: none; }
.model-list li:hover { background: rgba(255,115,0,.15); color: #fff; }

.model-price {
  background: linear-gradient(135deg, #ff7d00, #f04d00);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   MODALS (shared base)
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.modal-open { display: flex; }

.modal-box {
  background: linear-gradient(145deg, #0d1525, #111d30);
  border: 1px solid rgba(255,115,0,.4);
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 38px 34px 32px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,115,0,.15), 0 32px 80px rgba(0,0,0,.7);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { transform: translateY(24px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background .14s, color .14s;
}
.modal-close:hover { background: rgba(255,115,0,.2); color: #fff; }

.modal-header { text-align: center; margin-bottom: 22px; }
.modal-device-emoji { font-size: 48px; display: block; margin-bottom: 10px; }
.modal-header h2 { font-family: 'Barlow Condensed', Impact, Arial, sans-serif; font-size: 34px; font-weight: 900; text-transform: uppercase; margin: 0 0 6px; color: #fff; letter-spacing: 1px; }
.modal-header p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ============================================================
   PAYPAL MODAL
   ============================================================ */
.pp-price-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,115,0,.1);
  border: 1px solid rgba(255,115,0,.35);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.pp-price-left { text-align: center; flex-shrink: 0; }
.pp-price-tag {
  display: block;
  font-family: 'Barlow Condensed', Impact, Arial, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,115,0,.4);
}
.pp-price-left small { font-size: 11px; color: var(--text-muted); display: block; margin-top: 4px; }
.pp-perks { list-style: none; margin: 0; padding: 0; flex: 1; }
.pp-perks li { font-size: 14px; font-weight: 700; color: #e0e8ff; padding: 4px 0; }

.pp-note { font-size: 13px; color: var(--text-muted); text-align: center; margin: 0 0 20px; line-height: 1.5; }

/* PayPal button */
.paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #ffc439;
  color: #003087;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .3px;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(255,196,57,.4);
  transition: transform .15s, box-shadow .15s;
}
.paypal-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,196,57,.55); }
.paypal-btn svg { height: 22px; width: auto; }

.pp-divider { text-align: center; margin: 16px 0; color: var(--text-muted); font-size: 13px; position: relative; }
.pp-divider::before, .pp-divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 28px); height: 1px; background: rgba(255,255,255,.1); }
.pp-divider::before { left: 0; }
.pp-divider::after { right: 0; }

.whatsapp-btn-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.35);
  color: #25D366;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 10px;
  transition: background .15s;
}
.whatsapp-btn-modal:hover { background: rgba(37,211,102,.2); }

/* ============================================================
   QUOTE MODAL FORM
   ============================================================ */
.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.quote-form-grid input,
.quote-form-grid textarea {
  width: 100%;
  height: 42px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #fff;
  margin: 0;
  transition: border-color .14s;
}
.quote-form-grid input::placeholder,
.quote-form-grid textarea::placeholder { color: rgba(255,255,255,.35); }
.quote-form-grid input:focus,
.quote-form-grid textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,115,0,.15); }
.quote-form-grid .full-width { grid-column: 1 / -1; }
.quote-form-grid textarea { height: 100px; resize: vertical; }
.quote-submit-btn { width: 100%; margin-top: 4px; }

/* ============================================================
   ORDER FORM SECTION
   ============================================================ */
.order-section { padding: 60px 42px 40px; background: var(--dark2); }
.order-title { text-align: center; margin-bottom: 24px; }
.order-title h2 { font-family: 'Barlow Condensed', Impact, Arial, sans-serif; font-size: 36px; text-transform: uppercase; font-weight: 900; margin: 0 0 8px; color: #fff; }
.order-title span { display: block; width: 60px; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); margin: 0 auto 10px; border-radius: 2px; }
.order-sub { color: var(--text-muted); font-size: 14px; margin: 0; }

.order-form {
  max-width: 1380px;
  margin: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
  padding: 30px 22px 18px;
  background: rgba(255,255,255,.03);
}
.form-columns { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 22px; }
fieldset { border: 0; border-right: 1px solid rgba(255,255,255,.08); margin: 0; padding: 0 18px; }
fieldset:last-child { border-right: 0; }
legend { text-transform: uppercase; font-weight: 900; margin-bottom: 12px; color: var(--orange); font-size: 13px; letter-spacing: .5px; }

input, select, textarea {
  width: 100%;
  height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  margin-bottom: 10px;
  padding: 9px 11px;
  font-size: 13px;
  font-family: inherit;
  color: #fff;
}
input::placeholder { color: rgba(255,255,255,.35); }
select option { background: #1a2235; color: #fff; }
textarea { height: 100px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,115,0,.15); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hidden { display: none !important; }
.question { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.4; }

.option-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 9px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.option-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card:has(input:checked) { border-color: var(--orange); background: rgba(255,115,0,.1); }
.option-card span { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 18px; }
.option-card b, .option-card small { display: block; }
.option-card b { text-transform: uppercase; font-size: 12px; color: #fff; }
.option-card small { font-size: 11px; color: var(--text-muted); }

.disclaimer { background: rgba(255,150,0,.08); border: 1px solid rgba(255,150,0,.3); border-radius: 8px; padding: 10px; font-size: 12px; line-height: 1.4; margin: 10px 0; color: #ffd699; }

.booking-card { border: 1px solid rgba(29,109,242,.4); border-radius: 8px; background: rgba(29,109,242,.08); padding: 12px; margin-top: 6px; }
.booking-card b { display: block; text-transform: uppercase; color: #4d9fff; margin-bottom: 4px; font-size: 12px; }
.booking-card small { display: block; color: var(--text-muted); line-height: 1.4; font-size: 12px; }

.submit-total-row { display: flex; align-items: stretch; justify-content: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.checkout-total-display { min-width: 220px; background: rgba(0,0,0,.5); border: 1px solid var(--border); color: #fff; border-radius: 10px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.checkout-total-display > span { text-transform: uppercase; font-weight: 900; font-size: 13px; letter-spacing: .4px; color: var(--text-muted); }
.checkout-total-display strong { color: var(--orange); font-size: 26px; font-weight: 900; white-space: nowrap; }

.submit-btn {
  display: block;
  margin: 0 auto;
  min-width: 240px;
  border: 0;
  background: linear-gradient(135deg, #ff7d00, #f04d00);
  color: #fff;
  padding: 14px 30px;
  border-radius: 9px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .5px;
  box-shadow: 0 6px 24px rgba(255,115,0,.4);
  transition: transform .15s, box-shadow .15s;
  font-family: inherit;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,115,0,.55); }
.secure { text-align: center; margin: 10px 0 0; color: var(--text-muted); font-size: 12px; }

/* ============================================================
   INFO SECTIONS
   ============================================================ */
.info-section { padding: 70px 42px; }
.about-section { background: var(--dark3); }
.how-section { background: var(--dark2); }
.services-info-section { background: #060b12; }

.info-container { max-width: 1220px; margin: 0 auto; }
.section-title-clean { text-align: center; margin-bottom: 30px; }
.section-title-clean h2 { display: inline-block; margin: 0 18px; text-transform: uppercase; font-family: 'Barlow Condensed', Impact, Arial, sans-serif; font-size: 38px; font-weight: 900; color: #fff; letter-spacing: 1px; }
.section-title-clean span { display: inline-block; width: 60px; height: 3px; background: var(--orange); vertical-align: middle; border-radius: 2px; }

.info-section h3 { color: var(--orange); margin: 0 0 12px; font-size: 20px; }
.info-section p { font-size: 15px; line-height: 1.8; color: rgba(232,234,240,.75); }

.steps-grid, .service-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }

.step-card { border-radius: 16px; padding: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.step-card strong { width: 42px; height: 42px; background: linear-gradient(135deg, #ff7d00, #f04d00); color: #fff; display: grid; place-items: center; border-radius: 50%; margin-bottom: 14px; font-size: 20px; }
.step-card h3 { color: #fff; margin: 0 0 8px; font-size: 15px; }

.service-info-card { border-radius: 16px; padding: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,115,0,.15); }
.service-info-card h3 { color: var(--orange); margin: 0 0 8px; font-size: 15px; }
.service-info-card p { font-size: 14px; color: rgba(232,234,240,.65); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #030508; color: #fff; border-top: 2px solid var(--orange); padding: 40px 60px 14px; }
.footer-inner { display: grid; grid-template-columns: 200px 1fr 1fr 1fr; gap: 40px; }
.footer-inner img { width: 150px; object-fit: contain; }
footer h4 { color: var(--orange); text-transform: uppercase; margin: 0 0 12px; font-size: 13px; letter-spacing: .5px; }
footer a, footer p { display: block; color: rgba(255,255,255,.7); text-decoration: none; margin: 6px 0; font-size: 13px; }
.social-handle { color: #fff !important; font-weight: 900; margin-top: 8px !important; }
.copyright { text-align: center; border-top: 1px solid rgba(255,115,0,.3); margin-top: 20px; padding-top: 12px; color: var(--text-muted); font-size: 12px; }

.footer-wa-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366 !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 13px !important;
  margin-top: 10px !important;
  transition: background .15s;
}
.footer-wa-btn:hover { background: rgba(37,211,102,.22); }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page { min-height: 100vh; background: var(--dark); color: #fff; display: grid; place-items: center; }
.success-card { text-align: center; background: var(--dark2); border: 1px solid var(--border); border-radius: 18px; padding: 48px; max-width: 640px; }
.success-card img { width: 180px; }
.success-card h1 { text-transform: uppercase; font-family: 'Barlow Condensed', Impact, Arial, sans-serif; font-size: 48px; color: var(--orange); }
.success-card p { color: var(--text-muted); }
.success-card a { display: inline-block; background: linear-gradient(135deg, #ff7d00, #f04d00); color: #fff; text-decoration: none; text-transform: uppercase; font-weight: 900; padding: 14px 26px; border-radius: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1220px) {
  .topbar { height: auto; grid-template-columns: 1fr; text-align: center; padding: 14px 24px; gap: 10px; }
  .logo-area { justify-content: center; }
  .nav { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .header-right { justify-content: center; flex-wrap: wrap; }
  .device-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .form-columns { grid-template-columns: 1fr !important; }
  fieldset { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 18px; }
  fieldset:last-child { border-bottom: 0; }
  .steps-grid, .service-info-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .devices-section, .order-section, .info-section, footer { padding-left: 18px; padding-right: 18px; }
  .device-tile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .two-col { grid-template-columns: 1fr; }
  .submit-btn { min-width: 100%; }
  .submit-total-row { flex-direction: column; }
  .checkout-total-display { width: 100%; }
  .steps-grid, .service-info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .quote-form-grid { grid-template-columns: 1fr; }
  .pp-price-card { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}

@media (max-width: 460px) {
  .device-tile-grid { grid-template-columns: 1fr 1fr; }
}

/* ── HERO FINAL OVERRIDE: image only, full width, nothing else ── */

  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}


/* === HERO FINAL === */

  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* HERO - FINAL CLEAN */

/* HERO FINAL */
.hero-promo-full{display:block;width:100%;margin:0;padding:0;line-height:0;background:#06090f;}
.hero-promo-full img{display:block;width:100%;max-width:100%;height:auto;}



.pp-service-type-box {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  text-align: left;
}
.pp-service-type-box strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.pp-service-type-box label {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.pp-service-type-box input {
  margin-right: 8px;
}



.pp-booking-box {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255,115,0,.35);
  border-radius: 14px;
  background: rgba(255,115,0,.08);
  text-align: left;
}
.pp-booking-box strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.pp-booking-box label {
  display: grid;
  gap: 6px;
  margin: 10px 0;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.pp-booking-box input,
.pp-booking-box select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.pp-booking-box option {
  color: #111;
}
.pp-booking-box small {
  display: block;
  color: rgba(255,255,255,.72);
  margin-top: 8px;
}



.pp-customer-info-box {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  text-align: left;
}
.pp-customer-info-box strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.pp-customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pp-customer-grid label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.pp-customer-grid input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.paypal-btn.is-loading {
  opacity: .7;
  pointer-events: none;
}
@media(max-width:700px){
  .pp-customer-grid {
    grid-template-columns: 1fr;
  }
}



/* FixLab V13: ensure PayPal button is clickable */
#paypalCheckoutBtn,
.paypal-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
  cursor: pointer !important;
}
#paypalCheckoutBtn svg,
.paypal-btn svg {
  pointer-events: none;
}



/* FixLab V14: checkout address split fields and PayPal click safety */
#paypalCheckoutBtn,
.paypal-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
}
#paypalCheckoutBtn svg,
.paypal-btn svg {
  pointer-events: none !important;
}



.pp-promo-box {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  text-align: left;
}
.pp-promo-box strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
}
.pp-promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.pp-promo-row input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-transform: uppercase;
}
.pp-promo-row button {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  background: #ff7300;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
#ppPromoMessage {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
}
#ppPromoMessage.success {
  color: #69e56f;
}
#ppPromoMessage.error {
  color: #ff8a8a;
}


.tile-note {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,115,0,.25);
  border-radius: 12px;
  background: rgba(255,115,0,.08);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.35;
}
.model-sub {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  margin-top: 2px;
}
#ppAutoServiceNote {
  display:block;
  margin-top:8px;
  color:rgba(255,255,255,.7);
}




/* FIXLAB V26 — Mail-In vs Local Service rows */
.tile-note {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,115,0,.25);
  border-radius: 12px;
  background: rgba(255,115,0,.08);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.35;
}
.model-sub {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  margin-top: 2px;
}



/* FIXLAB V27 — Mail-In-only warning */
.pp-mailin-only-notice {
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,115,0,.55);
  background: rgba(255,115,0,.12);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.pp-service-type-box label.service-disabled {
  opacity: .45;
  filter: grayscale(1);
}
.pp-service-type-box input:disabled {
  cursor: not-allowed;
}



/* FIXLAB V28 — Back Glass and Quote tile support */
.device-tile[data-category="backglass"] .tile-label strong,
.device-tile[data-category="other-repair"] .tile-label strong {
  line-height: 1.05;
}
.device-tile[data-category="backglass"] .tile-note {
  border-color: rgba(255,115,0,.45);
  background: rgba(255,115,0,.10);
}
.device-tile[data-category="backglass"] .model-sub {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  margin-top: 2px;
}






/* FIXLAB V41 — dynamic service checkout messaging */
.pp-service-benefits {
  display: block;
  margin-top: 12px;
  line-height: 1.45;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}
.pp-locked-service-notice {
  margin: 12px 0 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,115,0,.55);
  background: rgba(255,115,0,.12);
  color: #fff;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.pp-service-type-box label[style*="display: none"] {
  display: none !important;
}


/* FIXLAB V48 — LOCKED uniform device tile sizing */
.device-tile-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.device-tile {
  height: 100%;
}
.device-tile .tile-inner {
  height: 100%;
  min-height: 330px;
}
.device-tile .tile-img-wrap {
  flex: 1 1 auto;
  min-height: 260px;
}
.device-tile .tile-label {
  flex: 0 0 58px;
  min-height: 58px;
}
@media (max-width: 900px) {
  .device-tile .tile-inner { min-height: 260px; }
  .device-tile .tile-img-wrap { min-height: 200px; }
}
@media (max-width: 640px) {
  .device-tile .tile-inner { min-height: 220px; }
  .device-tile .tile-img-wrap { min-height: 160px; }
}

/* FIXLAB V49 — LOCKED dropdown overlay + uniform device tiles
   Keeps model dropdowns from expanding/stretching the device cards. */
.device-tile-grid {
  align-items: start !important;
  grid-auto-rows: auto !important;
}
.device-tile {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  z-index: 1;
}
.device-tile.tile-open {
  z-index: 1000 !important;
}
.device-tile .tile-inner {
  height: 330px !important;
  min-height: 330px !important;
  max-height: 330px !important;
  display: flex !important;
  flex-direction: column !important;
}
.device-tile .tile-img-wrap {
  height: 272px !important;
  min-height: 272px !important;
  max-height: 272px !important;
  flex: 0 0 272px !important;
}
.device-tile .tile-label {
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  flex: 0 0 58px !important;
}
.device-tile .tile-dropdown {
  position: absolute !important;
  top: calc(100% - 2px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1001 !important;
}
@media (max-width: 900px) {
  .device-tile .tile-inner {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
  }
  .device-tile .tile-img-wrap {
    height: 202px !important;
    min-height: 202px !important;
    max-height: 202px !important;
    flex-basis: 202px !important;
  }
}
@media (max-width: 640px) {
  .device-tile .tile-inner {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
  }
  .device-tile .tile-img-wrap {
    height: 162px !important;
    min-height: 162px !important;
    max-height: 162px !important;
    flex-basis: 162px !important;
  }
}

/* FIXLAB V53 — LOCKED service selector layout fix
   Prevents Mail-In / Pickup labels from overflowing or rendering off-panel. */
.pp-service-type-box {
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.pp-service-type-box label {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  align-items: center !important;
  justify-content: start !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 12px 0 !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  text-align: left !important;
}
.pp-service-type-box input[type="radio"] {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin: 0 !important;
  justify-self: center !important;
}
.pp-service-type-box label[style*="display: none"] {
  display: none !important;
}
