


.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid #2b3a5c;
  background: #17223a;
  color: #e2e8f0;
  min-height: 48px;
  text-align: center;
}

.pill--primary {
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  color: #04121b;
  border: none;
  box-shadow: 0 10px 26px rgba(34, 211, 238, 0.22);
}

.pill--primary:hover {
  background: linear-gradient(135deg, #60a5fa, #67e8f9);
  color: #04121b;
}

.pill--ghost:hover {
  border-color: #22d3ee;
  color: #22d3ee;
}

.pill--wide {
  width: 100%;
}


.showcase {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4.5rem 1rem 3.5rem;
  color: #ffffff;
  background-color: #0b1220;
  background-image: url("/images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.showcase__aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.94), rgba(34, 211, 238, 0.32), rgba(59, 130, 246, 0.55), rgba(11, 18, 32, 0.94));
  background-size: 200% 200%;
  animation: heroShift 12s ease infinite;
}

@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(1.5rem, 2vw);
  align-items: center;
  min-height: 62vh;
}

.showcase__copy {
  text-align: center;
  padding-right: 1rem;
}

.showcase__tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a5f3fc;
  border: 1px solid rgba(165, 243, 252, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.9rem;
}

.showcase__title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.showcase__sub {
  color: #dbeafe;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.showcase__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.showcase__price-now {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.showcase__price-old {
  font-size: 1.1rem;
  color: #cbd5e1;
  text-decoration: line-through;
}

.showcase__cut {
  background: #22d3ee;
  color: #04121b;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.showcase__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}


.showcase__badges {
  display: flex;
  gap: max(1rem, 2vw);
  justify-content: center;
  flex-wrap: wrap;
}

.showcase__badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #e0f2fe;
}

.showcase__badge svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.showcase__shot {
  position: relative;
}

.showcase__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2, 6, 18, 0.55);
  border: 1px solid rgba(148, 197, 255, 0.25);
  aspect-ratio: 1 / 1;
  background: #0e1626;
}

.showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase__stamp {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  background: rgba(4, 18, 27, 0.82);
  color: #a5f3fc;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
}


.why__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(1rem, 2vw);
  margin-bottom: 1.5rem;
}

.why__step {
  background: #0e1626;
  border: 1px solid #1e2a44;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.why__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  color: #04121b;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.why__text {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}



.good-stuff__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.good-stuff__card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 12px;
  background: #0e1626;
  border: 1px solid #1e2a44;
  box-shadow: 0 2px 10px rgba(2, 6, 18, 0.45);
}

.good-stuff__icon {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #12233d, #0b2a35);
  border: 1px solid #23405c;
}

.good-stuff__icon svg {
  width: 44px;
  height: 44px;
}

.good-stuff__body {
  min-width: 0;
}

.good-stuff__title {
  margin-bottom: 0.3rem;
}

.good-stuff__text {
  color: #94a3b8;
  font-size: 0.94rem;
  margin: 0;
}



.expertise__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.expertise__tile {
  background: #0e1626;
  border: 1px solid #1e2a44;
  border-radius: 14px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expertise__tile--shot {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  grid-row: span 2;
}

.expertise__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertise__glyph {
  width: 40px;
  height: 40px;
}

.expertise__label {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 1.02rem;
}

.expertise__note {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0;
}

.expertise__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid #1e2a44;
  padding-top: 1.25rem;
}

.expertise__fact {
  text-align: left;
}

.expertise__fact-k {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.expertise__fact-v {
  display: block;
  font-weight: 600;
  color: #e2e8f0;
}


.magic__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(1rem, 2vw);
}

.magic__step {
  background: #0e1626;
  border: 1px solid #1e2a44;
  border-left: 3px solid #22d3ee;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.magic__step-no {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22d3ee;
  display: block;
  margin-bottom: 0.4rem;
}

.magic__step-title {
  margin-bottom: 0.35rem;
}

.magic__step-text {
  color: #94a3b8;
  font-size: 0.94rem;
  margin: 0;
}



.we-promise__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.we-promise__item {
  flex: 1 1 320px;
  max-width: calc((100% - 2.5rem) / 3);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #0e1626;
  border: 1px solid #1e2a44;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.we-promise__mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-promise__mark svg {
  width: 20px;
  height: 20px;
}

.we-promise__title {
  margin-bottom: 0.25rem;
}

.we-promise__text {
  color: #94a3b8;
  font-size: 0.93rem;
  margin: 0;
}


.investment__card {
  background: linear-gradient(150deg, #12203a, #0d1a2c);
  border: 1px solid #2b3a5c;
  border-radius: 18px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: max(1.25rem, 2vw);
  align-items: center;
}

.investment__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.investment__now {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.investment__old {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
  white-space: nowrap;
}

.investment__save {
  white-space: nowrap;
  background: #22d3ee;
  color: #04121b;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.2rem 0.7rem;
}

.investment__includes {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.investment__line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.investment__line svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.15rem;
}


.lets-talk__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: max(1.5rem, 2.5vw);
  align-items: start;
}

.lets-talk__main {
  min-width: 0;
}

.lets-talk__aside {
  position: sticky;
  top: 84px;
  min-width: 0;
}

.flowsteps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.flowsteps__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 0.97rem;
}

.flowsteps__no {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1px solid #22d3ee;
  color: #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.order {
  background: #0e1626;
  border: 1px solid #2b3a5c;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 18px 44px rgba(2, 6, 18, 0.5);
}

.order__title {
  margin-bottom: 0.35rem;
}

.order__lede {
  color: #94a3b8;
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.order__field {
  margin-bottom: 0.9rem;
}

.order__label {
  display: block;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.order__input {
  width: 100%;
  background: #0b1220;
  border: 1px solid #2b3a5c;
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  color: #e2e8f0;
  min-height: 48px;
}

.order__input::placeholder {
  color: #64748b;
}

.order__input:focus {
  border-color: #22d3ee;
  outline: none;
}

.order__phone {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.order__prefix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid #2b3a5c;
  border-radius: 10px;
  background: #17223a;
  color: #94a3b8;
  font-weight: 600;
  flex: none;
}

.order__consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.order__check {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  flex: none;
  accent-color: #22d3ee;
}

.order__submit {
  width: 100%;
}

.order__note {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 0.75rem;
  text-align: center;
}

.order__error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid #7f1d1d;
  color: #fecaca;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}


.qgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.qcard {
  background: #0e1626;
  border: 1px solid #1e2a44;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(2, 6, 18, 0.4);
}

.qcard__q {
  margin-bottom: 0.4rem;
  color: #e2e8f0;
}

.qcard__a {
  color: #94a3b8;
  font-size: 0.94rem;
  margin: 0;
}


.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  color: #04121b;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.3);
  min-height: 52px;
}

.fab__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.fab-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 901;
  width: min(92vw, 340px);
  background: #111a2e;
  border: 1px solid #2b3a5c;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(2, 6, 18, 0.62);
  display: none;
}

.fab-panel.is-open {
  display: block;
}

.fab-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #1e2a44;
}

.fab-panel__title {
  font-size: 1.02rem;
  font-weight: 600;
}

.fab-panel__close {
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.fab-panel__body {
  padding: 1rem;
}


.loader {
  border: 4px solid rgba(226, 232, 240, 0.15);
  border-left-color: #04121b;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, #0e1626, #16243c, #0e1626);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.legal {
  padding: 2.5rem 1rem 3rem;
  background: #0b1220;
}

.legal__head {
  border-bottom: 1px solid #1e2a44;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.legal__meta {
  color: #64748b;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.legal__body h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.legal__body h3 {
  margin-top: 1.1rem;
  margin-bottom: 0.35rem;
  color: #cbd5e1;
}

.legal__body p,
.legal__body li {
  color: #94a3b8;
  font-size: 0.97rem;
}

.legal__body ul {
  margin: 0.4rem 0 0.75rem 1.1rem;
  list-style: disc;
}

.legal__body li {
  margin-bottom: 0.3rem;
}

.legal__back {
  display: inline-flex;
  margin-top: 2rem;
}

.footprint__logo {
  height: 1.75rem;
  width: 1.75rem;
  flex: none;
}


@media (max-width: 1024px) {
  .expertise__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment__card {
    grid-template-columns: 1fr;
  }

  .lets-talk__layout {
    grid-template-columns: 1fr;
  }

  .lets-talk__aside {
    position: static;
  }
}

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

@media (max-width: 768px) {
  .showcase {
    padding: 2.5rem 1rem;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }

  .showcase__copy {
    padding-right: 0;
    order: 1;
  }

  .showcase__shot {
    order: 2;
    max-width: 20rem;
    margin: 0 auto;
    width: 100%;
  }

  .why__steps,
  .magic__row,
  .good-stuff__grid,
  .expertise__gallery {
    grid-template-columns: 1fr;
  }

  .expertise__tile--shot {
    grid-row: auto;
  }

  .we-promise__item {
    max-width: 100%;
  }

  .good-stuff__card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .good-stuff__icon {
    width: 64px;
    height: 64px;
  }

  .good-stuff__icon svg {
    width: 32px;
    height: 32px;
  }

  .fab {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .fab-panel {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}
