@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-1: #0A018C;
  --navy-2: #3B22B0;
  --blue-3: #4E32D6;
  --ink: #0A018C;
  --green: #22D3A6;
  --green-dark: #18A87B;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

/* ══ Google Ads sitelink anchors (#rto, #delivery, #gallery) ══
   scroll-margin-top gives the landed section breathing room above the
   viewport edge; the highlight class is toggled briefly by JS on arrival. */
#rto, #delivery, #gallery { scroll-margin-top: 1.25rem; }
.lpq-anchor-highlight {
  animation: lpq-anchor-flash 2.4s ease-out;
  border-radius: 12px;
}
@keyframes lpq-anchor-flash {
  0%   { box-shadow: 0 0 0 4px rgba(34,211,166,.75); }
  70%  { box-shadow: 0 0 0 4px rgba(34,211,166,.35); }
  100% { box-shadow: 0 0 0 0 rgba(34,211,166,0); }
}
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--navy-1);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ══ Call button — the page's one allowed exit: a phone call. ══
   Mobile: sits in-flow next to the logo, centered on the same row (see .lpq-top-row).
   Desktop: pops back out to the top-right corner of the whole hero. */
.lpq-call {
  position: relative; flex-shrink: 0; z-index: 3;
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(120deg, var(--navy-1) 0%, var(--navy-2) 100%);
  border: 1.5px solid var(--green);
  color: #fff; text-decoration: none; white-space: nowrap;
  padding: .55rem 1.1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.45);
  transition: box-shadow .2s, transform .2s, background .2s;
}
.lpq-call:hover {
  background: linear-gradient(120deg, #0d0299 0%, #4527c4 100%);
  box-shadow: 0 10px 22px -6px rgba(0,0,0,.55);
  transform: translateY(-1px);
}
/* Pulsing ring — draws the eye without needing motion on the whole button */
.lpq-call::before {
  content: ""; position: absolute; inset: -5px; z-index: -1;
  border: 2px solid var(--green); border-radius: 999px;
  opacity: 0; animation: lpqCallPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.lpq-call svg {
  width: 16px; height: 16px; flex-shrink: 0;
  transform-origin: 50% 40%;
  animation: lpqPhoneRing 3.2s ease-in-out infinite;
}
@keyframes lpqCallPulse {
  0%   { transform: scale(1);    opacity: .65; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes lpqPhoneRing {
  0%, 8%, 100% { transform: rotate(0deg); }
  1%  { transform: rotate(-16deg); }
  2%  { transform: rotate(13deg); }
  3%  { transform: rotate(-10deg); }
  4%  { transform: rotate(7deg); }
  5%  { transform: rotate(-4deg); }
  6%  { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lpq-call::before, .lpq-call svg { animation: none; }
}
@media (max-width: 480px) {
  .lpq-call { padding: .5rem .8rem; font-size: .78rem; }
}
@media (min-width: 1024px) {
  .lpq-call {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
  }
}

/* ══ Top row — logo + call button share one row, vertically centered ══ */
.lpq-top-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.1rem;
}
@media (min-width: 1024px) {
  .lpq-top-row { justify-content: flex-start; }
}

/* ══ Hero ════════════════════════════════════════════════════════ */
.lpq-hero { position: relative; color: #fff; overflow: hidden; }
.lpq-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lpq-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lpq-hero__overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 85% 100%, rgba(34,211,166,.30) 0%, rgba(34,211,166,0) 55%),
    linear-gradient(125deg, rgba(6,5,32,.95) 0%, rgba(17,10,110,.86) 48%, rgba(46,25,150,.72) 100%);
}
.lpq-corner-lines {
  position: absolute; pointer-events: none; z-index: 0;
}
.lpq-corner-lines--tr {
  top: 0; right: 0; width: 260px; height: 180px;
  background: repeating-linear-gradient(-45deg, rgba(34,211,166,.5) 0 2px, transparent 2px 32px);
  -webkit-mask-image: linear-gradient(-45deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(-45deg, #000 0%, transparent 70%);
}
.lpq-corner-lines--bl {
  bottom: 0; left: 0; width: 300px; height: 220px;
  background: repeating-linear-gradient(-45deg, rgba(34,211,166,.4) 0 2px, transparent 2px 32px);
  -webkit-mask-image: linear-gradient(135deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(135deg, #000 0%, transparent 70%);
}

/* Mobile: single column, items stack in DOM order — headline block, then the
   form, then the trust row / free badge (see markup order below).
   Desktop: two columns; content-top and content-bottom share the left column
   (stacked), the form spans both their rows in the right column. */
.lpq-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.75rem; align-items: start;
  padding: 1.75rem 0 3rem;
}
@media (min-width: 1024px) {
  .lpq-grid {
    grid-template-columns: 1.1fr 1fr; grid-template-rows: auto auto;
    column-gap: 3rem; row-gap: .5rem; padding: 1.75rem 0 4rem;
  }
  .lpq-content-top { grid-column: 1; grid-row: 1; }
  .lpq-content-bottom { grid-column: 1; grid-row: 2; }
  .lpq-form-col { grid-column: 2; grid-row: 1 / span 2; }
}

.lpq-content-top, .lpq-content-bottom { max-width: 100%; }

.lpq-brand img { height: 112px; width: auto; display: block; }
@media (max-width: 767px) { .lpq-brand img { height: 74px; } }
@media (max-width: 480px) { .lpq-brand img { height: 60px; } }

/* Clears the absolutely-positioned call button above it so the card never
   overlaps it. Only needed at desktop — on mobile the button is in-flow
   next to the logo, so the form needs no extra offset there. */
@media (min-width: 1024px) {
  .lpq-form-col { margin-top: 4rem; }
}

.lpq-ribbon {
  display: inline-block; background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1.5rem .5rem 1rem; margin-bottom: 1.2rem;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.lpq-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.18; margin: 0 0 1rem; letter-spacing: -.01em;
}
.lpq-heading .accent { color: var(--green); display: block; }

.lpq-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem); color: rgba(255,255,255,.85);
  line-height: 1.65; margin: 0 0 1.75rem; max-width: 46ch;
}
/* Desktop: the trust icons sit in their own grid item (.lpq-content-bottom) below
   the subtext, so tighten the gap between them so they read as one group. */
@media (min-width: 1024px) {
  .lpq-sub { margin-bottom: .85rem; }
}

.lpq-trust-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.25rem; }
.lpq-trust-item { display: flex; flex-direction: column; align-items: flex-start; text-align: left; max-width: 160px; }
.lpq-trust-text { min-width: 0; }
.lpq-trust-icon {
  width: 60px; height: 60px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: .55rem;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,.4); flex-shrink: 0;
}
.lpq-trust-icon svg, .lpq-trust-icon img { width: 52px; height: 52px; color: var(--green-dark); }
.lpq-trust-item strong {
  font-size: .74rem; font-weight: 800; letter-spacing: .02em; line-height: 1.3;
  color: #fff; text-transform: uppercase; display: block; margin-bottom: .2rem;
}
.lpq-trust-item span { font-size: .72rem; color: rgba(255,255,255,.7); line-height: 1.4; }

/* Mobile: icon on the left, title + caption stacked on the right — more compact
   and easier to scan than icon-above-text when the column is narrow. */
@media (max-width: 767px) {
  .lpq-trust-row { flex-direction: column; flex-wrap: nowrap; gap: 1rem; }
  .lpq-trust-item { flex-direction: row; align-items: center; gap: .85rem; max-width: 100%; }
  .lpq-trust-icon { margin-bottom: 0; }
}

.lpq-free-badge {
  max-width: 420px; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.06); border: 1.5px solid var(--green); border-radius: .9rem;
  padding: .8rem 1rem; box-shadow: 0 14px 28px -8px rgba(0,0,0,.4);
}
.lpq-free-badge__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--green); display: flex; align-items: center; justify-content: center;
}
.lpq-free-badge__icon svg { width: 18px; height: 18px; color: var(--green); }
.lpq-free-badge strong { display: block; font-size: .78rem; font-weight: 800; color: #fff; letter-spacing: .01em; margin-bottom: .15rem; }
.lpq-free-badge span { font-size: .68rem; color: rgba(255,255,255,.72); line-height: 1.4; }

/* ══ Form Card ═══════════════════════════════════════════════════ */
.lpq-card {
  width: 100%; position: relative;
  background: #fff; border: 2px solid var(--green); border-radius: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 30px 70px -12px rgba(0,0,0,.5);
}
@media (max-width: 480px) {
  .lpq-card { padding: 1.5rem 1.1rem 1.5rem; }
}

.lpq-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.lpq-card__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--green); display: flex; align-items: center; justify-content: center;
}
.lpq-card__icon svg { width: 24px; height: 24px; color: var(--green-dark); }
.lpq-card__head-text { flex: 1; min-width: 0; }
.lpq-card__eyebrow { display: flex; align-items: center; gap: .6rem; margin-bottom: .25rem; }
.lpq-card__eyebrow-line { flex: 1; height: 2px; background: var(--green); }
.lpq-card__eyebrow-text {
  font-size: .78rem; font-weight: 800; color: var(--ink);
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.lpq-card__title-row { display: flex; align-items: center; justify-content: center; gap: .6rem; }
.lpq-card__title { font-size: clamp(1.35rem, 2.6vw, 1.7rem); font-weight: 900; color: var(--ink); letter-spacing: -.01em; line-height: 1.15; text-align: center; }
.lpq-card__title .accent { color: var(--green-dark); }

.lpq-field { margin-bottom: .9rem; }
.lpq-field label {
  display: block; font-size: .68rem; font-weight: 700; color: #52525b;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem;
}
.lpq-field label .req { color: #d1345b; }
.lpq-input-wrap { position: relative; }
.lpq-input-wrap svg {
  position: absolute; left: .8rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: #8b93a7; pointer-events: none;
}
.lpq-field input, .lpq-field select {
  width: 100%; padding: .75rem 1rem;
  background: #f8f8fb; border: 1.5px solid #e4e4ea; border-radius: .6rem;
  font-size: .9rem; font-family: inherit; color: #18181b;
  outline: none; transition: border-color .15s, background .15s, box-shadow .15s;
  appearance: none; -webkit-appearance: none;
}
.lpq-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3e%3cpath fill='%2352525b' d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right .75rem center; background-size: 12px;
  padding-right: 2.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* Payment Preference, mobile only: once a real option is picked (select
   becomes :valid, since the empty placeholder option is what makes it
   :invalid while required), drop the caret and reclaim its padding for
   the option text — screen's tight enough there that it's worth it. */
@media (max-width: 767px) {
  #lpq-payment:valid {
    background-image: none;
    padding-right: 1rem;
  }
}
/* intl-tel-input's "+1" dial-code prefix defaults to a near-white color meant
   for a dark input — force it dark since our fields are light. */
.iti__selected-dial-code {
  color: #52525b; font-size: .9rem;
}
.lpq-field input:focus, .lpq-field select:focus {
  border-color: var(--green-dark); background: #fff; box-shadow: 0 0 0 3px rgba(34,211,166,.18);
}
/* Must come after the base padding shorthand above so it isn't clobbered by it. */
.lpq-input-wrap input, .lpq-input-wrap select { padding-left: 2.45rem; }
.lpq-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.lpq-row--stack { grid-template-columns: 1fr; }
.lpq-row--stack .lpq-field { margin-bottom: 0; }
@media (max-width: 560px) {
  .lpq-row { grid-template-columns: 1fr; }
}

.lpq-needs-divider { display: flex; align-items: center; gap: .7rem; margin: .6rem 0 1rem; }
.lpq-needs-line { flex: 1; height: 2px; background: var(--green); }
.lpq-needs-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--green); display: flex; align-items: center; justify-content: center;
}
.lpq-needs-icon svg { width: 16px; height: 16px; color: var(--green-dark); }
.lpq-needs-text {
  font-size: .78rem; font-weight: 800; color: var(--ink);
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}

.lpq-submit {
  display: flex; align-items: stretch; width: 100%; margin-top: 1.2rem;
  border: none; border-radius: 999px; overflow: hidden; cursor: pointer; padding: 0;
  box-shadow: 0 14px 28px -8px rgba(10,1,140,.5);
  transition: box-shadow .2s, transform .2s;
}
.lpq-submit:hover { box-shadow: 0 18px 34px -8px rgba(10,1,140,.6); transform: translateY(-1px); }
.lpq-submit:disabled { opacity: .75; cursor: default; transform: none; }
.lpq-submit__icon {
  flex: 0 0 3.4rem; display: flex; align-items: center; justify-content: center;
  background: var(--green);
}
.lpq-submit__icon svg { width: 18px; height: 18px; color: #fff; }
.lpq-submit__text {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--ink) 75%);
  color: #fff; font-weight: 800; font-size: .92rem; letter-spacing: .03em; line-height: 1.25;
  text-transform: uppercase; padding: 1rem .75rem; text-align: center;
}
/* Narrow phones: the full CTA text wraps to 3 cramped lines at the default size —
   shrink the icon tile and tighten the type so it settles into 2 balanced lines. */
@media (max-width: 420px) {
  .lpq-submit__icon { flex-basis: 2.6rem; }
  .lpq-submit__icon svg { width: 16px; height: 16px; }
  .lpq-submit__text { font-size: .76rem; letter-spacing: .01em; padding: .8rem .4rem; }
}

.lpq-fineprint {
  display: flex; align-items: flex-start; justify-content: center; gap: .4rem;
  text-align: center; margin-top: 1rem; font-size: .7rem; color: #6b7280; line-height: 1.5;
}
.lpq-fineprint svg { width: 12px; height: 12px; flex-shrink: 0; color: #9aa1b5; margin-top: .18rem; }

/* Thank-you state — same .lpq-card shell as the form. JS sets min-height to
   match the form's rendered height exactly, and this flex centering keeps
   the content in the middle of that taller box instead of pinned to the top. */
#lpq-ty {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 2rem; box-sizing: border-box;
}
.lpq-ty-icon {
  width: 68px; height: 68px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px -4px rgba(24,168,123,.5);
}
/* Mobile has no min-height match (see JS) — tighten the padding/icon so the
   box hugs its own content instead of carrying the same generous desktop
   whitespace it doesn't need here. */
@media (max-width: 1023px) {
  #lpq-ty { padding: 1.75rem 1.5rem; }
  .lpq-ty-icon { width: 52px; height: 52px; margin-bottom: .85rem; }
  .lpq-ty-icon svg { width: 24px; height: 24px; }
  #lpq-ty h2 { font-size: 1.35rem; margin-bottom: .4rem; }
  .lpq-ty-actions { margin-top: 1.25rem; }
}
#lpq-ty h2 { font-size: 1.6rem; font-weight: 800; color: #18181b; margin: 0 0 .6rem; text-transform: none; }
#lpq-ty p { font-size: .95rem; color: #4b5563; line-height: 1.6; margin: 0 auto; max-width: 34ch; }

.lpq-ty-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.lpq-ty-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.lpq-ty-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.lpq-ty-btn--call {
  background: linear-gradient(120deg, var(--navy-1) 0%, var(--navy-2) 100%); color: #fff; border: none;
  box-shadow: 0 10px 20px -6px rgba(10,1,140,.5);
}
.lpq-ty-btn--call:hover { transform: translateY(-1px); box-shadow: 0 14px 26px -6px rgba(10,1,140,.6); }
.lpq-ty-btn--home {
  background: #fff; color: var(--green-dark); border: 1.5px solid var(--green);
}
.lpq-ty-btn--home:hover { background: rgba(34,211,166,.1); transform: translateY(-1px); }

/* ══ Secondary trust strip — light bar under the hero, no links ═══════ */
.lpq-trust-strip { background: #eef0f5; padding: 1.1rem 1.5rem; }
.lpq-trust-strip__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1rem 2.75rem;
}
.lpq-trust-strip__item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.lpq-trust-strip__item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink); }
.lpq-trust-strip__item svg.star { color: var(--ink); }

/* Mobile: one full-width row per item, icon left / text right, all left-aligned
   instead of the wrapped-and-centered group used at desktop widths. */
@media (max-width: 640px) {
  .lpq-trust-strip__inner { flex-direction: column; align-items: flex-start; gap: .85rem; }
  .lpq-trust-strip__item { width: 100%; align-items: flex-start; }
  .lpq-trust-strip__item svg { margin-top: .15rem; }
}

/* ══ Building styles gallery — informational cards only, no links off page ══ */
.lpq-gallery { background: var(--navy-1); padding: 2.75rem 1.5rem 3rem; }
.lpq-gallery__title {
  margin: 0 0 1.5rem; text-align: center;
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem); font-weight: 800; color: #fff;
}
.lpq-gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
  max-width: 1280px; margin: 0 auto;
}
.lpq-gallery__card {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.04);
}
.lpq-gallery__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lpq-gallery__label {
  display: block; padding: .65rem .75rem; text-align: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  background: linear-gradient(120deg, var(--navy-1) 0%, var(--navy-2) 100%);
  border-top: 1.5px solid var(--green);
}
@media (max-width: 860px) {
  .lpq-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .lpq-gallery__grid { grid-template-columns: 1fr; }
}

/* ══ Minimal footer — no links, no navigation ═══════════════════════ */
.lpq-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 1.25rem 1.5rem 1.75rem;
  font-size: .72rem; color: rgba(255,255,255,.55);
  background: #060144;
}
