/* ===================== */
/* MOBILE APP LAYOUT     */
/* ===================== */

.mobile-app-page {
  display: none;
}


/* ===================== */
/* MOBILE ONLY           */
/* ===================== */

@media (max-width: 768px) {

  .desktop-page {
    display: none;
  }

  .mobile-app-page {
    display: block;
    min-height: 100vh;
    background: #050505;
    color: #fff;
    padding-top: 82px;
    padding-bottom: 92px;
  }

}


/* ===================== */
/* TOP BAR               */
/* ===================== */

.mobile-app-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;

  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  background:
    linear-gradient(
      180deg,
      rgba(5,5,5,.96),
      rgba(5,5,5,.82)
    );

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,.06);
}


/* ===================== */
/* BRAND                 */
/* ===================== */

.mobile-app-brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.mobile-app-brand img {
  width: 38px;
  height: auto;
}

.mobile-app-brand span {
  font-size: 1rem;
}


/* ===================== */
/* ALERT BUTTON          */
/* ===================== */

.mobile-app-alert-btn {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;

  background: rgba(255,255,255,.03);

  color: #fff;

  cursor: pointer;
}


/* ===================== */
/* CONTENT AREA          */
/* ===================== */

.mobile-app-content {
  padding: 20px;
}


/* ===================== */
/* HERO CARD             */
/* ===================== */

.mobile-app-hero-card {
  padding: 28px 24px;

  border-radius: 28px;

  background:
    radial-gradient(
      circle at top right,
      rgba(201,162,77,.18),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.015)
    ),
    #101114;

  border: 1px solid rgba(201,162,77,.18);

  box-shadow:
    0 24px 60px rgba(0,0,0,.35);
}

.mobile-app-eyebrow {
  margin-bottom: 18px;

  color: #c9a24d;

  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.mobile-app-hero-card h1 {
  margin: 0 0 18px;

  font-size: clamp(2.3rem, 9vw, 3.4rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.mobile-app-hero-card h1 span {
  color: #c9a24d;
}

.mobile-app-hero-card p {
  color: #cbc5bb;
  line-height: 1.7;
}

.mobile-app-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin-top: 28px;
}


/* ===================== */
/* BOTTOM NAV            */
/* ===================== */

.mobile-app-nav {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;

  z-index: 5000;

  height: 74px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  align-items: center;

  padding: 0 8px;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(18,18,20,.96),
      rgba(8,8,10,.96)
    );

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 24px 50px rgba(0,0,0,.45);
}


/* ===================== */
/* NAV ITEMS             */
/* ===================== */

.mobile-app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;

  color: #a7a19a;
  text-decoration: none;

  font-size: .75rem;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.mobile-app-nav-item span {
  font-size: 1.1rem;
}

.mobile-app-nav-item small {
  font-size: .68rem;
  font-weight: 600;
}

.mobile-app-nav-item.is-active {
  color: #fff;
}


/* ===================== */
/* CENTER BUTTON         */
/* ===================== */

.mobile-app-nav-item--center {
  width: 62px;
  height: 62px;

  margin: 0 auto;
  margin-top: -26px;

  border-radius: 50%;

  background:
    linear-gradient(
      180deg,
      #e0ba63,
      #c9a24d
    );

  color: #17120a;

  box-shadow:
    0 16px 32px rgba(201,162,77,.35);
}

.mobile-app-nav-item--center span {
  font-size: 1.4rem;
}

.mobile-app-nav-item--center small {
  font-weight: 800;
}

/* ===================== */
/* MOBILE APP SECTIONS   */
/* ===================== */

.mobile-app-section {
  margin-top: 34px;
}

.mobile-app-section-heading {
  margin-bottom: 18px;
}

.mobile-app-section-heading p {
  margin: 0 0 8px;
  color: #c9a24d;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mobile-app-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}


/* VALUE CARDS */

.mobile-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mobile-value-card {
  min-height: 150px;
  padding: 18px 14px;
  border-radius: 20px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.mobile-value-icon {
  width: 46px;
  height: 46px;

  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

  border: 1px solid rgba(255,255,255,.06);

  color: #c9a24d;

  font-size: 1.1rem;

  box-shadow:
    0 12px 24px rgba(0,0,0,.22);
}

.mobile-value-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: .92rem;
  line-height: 1.2;
}

.mobile-value-card p {
  margin: 0;
  color: #a7a19a;
  font-size: .78rem;
  line-height: 1.45;
}


/* SERVICE LIST */

.mobile-service-list {
  display: grid;
  gap: 12px;
}

.mobile-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 18px 18px;
  border-radius: 18px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

/* ===================== */
/* SERVICE ICONS         */
/* ===================== */

.mobile-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 22px;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at top right,
      rgba(201,162,77,.06),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.015)
    ),
    #101114;

  border: 1px solid rgba(255,255,255,.08);

  color: #fff;
  text-decoration: none;
}

.mobile-service-card__left {
  display: flex;
  align-items: center;
  gap: 18px;

  flex: 1;
}

.mobile-service-icon {
  flex-shrink: 0;

  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.015)
    );

  border: 1px solid rgba(255,255,255,.06);

  box-shadow:
    0 12px 30px rgba(0,0,0,.22);
}

.mobile-service-icon img {
  width: 38px;
  height: 38px;
}

.mobile-service-card__content strong {
  display: block;

  margin-bottom: 6px;

  color: #fff;

  font-size: 1rem;
  line-height: 1.2;
}

.mobile-service-card__content p {
  margin: 0;

  color: #9e988f;

  font-size: .84rem;
  line-height: 1.5;
}

.mobile-service-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: #c9a24d;
}

.mobile-service-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: .95rem;
}

.mobile-service-card p {
  margin: 0;
  color: #a7a19a;
  font-size: .82rem;
  line-height: 1.45;
}

.mobile-service-card b {
  color: #c9a24d;

  font-size: 2rem;
  font-weight: 300;

  opacity: .9;
}


/* WORK CARDS */

.mobile-work-card {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.mobile-work-card img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-work-card__image {
  padding: 24px;

  background: #f4f1eb;

  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mobile-work-card__image img {
  width: 100%;
  display: block;
}

.mobile-work-card__body {
  padding: 20px;
}

.mobile-work-card__body small {
  display: block;
  margin-bottom: 8px;

  color: #c9a24d;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-work-card__body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.mobile-work-card__body p {
  margin: 0 0 14px;
  color: #a7a19a;
  font-size: .9rem;
  line-height: 1.55;
}

.mobile-work-card__body a {
  color: #c9a24d;
  font-weight: 800;
  font-size: .9rem;
}


/* FINAL CTA */

.mobile-app-final-cta {
  margin-top: 36px;
  margin-bottom: 18px;
  padding: 28px 24px;
  border-radius: 26px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.20), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(201,162,77,.18);
  text-align: center;
}

.mobile-app-final-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mobile-app-final-cta p {
  margin: 0 0 22px;
  color: #cbc5bb;
  line-height: 1.6;
}

.mobile-app-final-cta .btn {
  width: 100%;
}

.mobile-app-footer-note {
  margin: 34px 0 24px;
  padding-bottom: 24px;
  text-align: center;
  color: #8f887f;
  font-size: .78rem;
}

.mobile-app-footer-note span {
  display: block;
  margin-top: 6px;
  color: #c9a24d;
  font-weight: 700;
}

.mobile-nav-icon {
  width: 18px;
  height: 18px;

  margin-bottom: 4px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.mobile-nav-icon img {
  width: 16px !important;
  height: 16px !important;

  object-fit: contain;
}

/* ===================== */
/* SERVICES APP PAGE     */
/* ===================== */

.mobile-services-page .mobile-app-hero-card {
  background:
    radial-gradient(circle at top right, rgba(201,162,77,.20), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)),
    #101114;
}

.mobile-service-card--large {
  min-height: 128px;
}

.mobile-service-feature-list {
  display: grid;
  gap: 12px;
}

.mobile-service-feature {
  padding: 20px;
  border-radius: 22px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.06), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);
}

.mobile-service-feature strong {
  display: block;
  margin-bottom: 8px;

  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.mobile-service-feature p {
  margin: 0;

  color: #a7a19a;
  font-size: .9rem;
  line-height: 1.55;
}


/* ===================== */
/* MOBILE PROCESS LIST   */
/* ===================== */

.mobile-process-list {
  display: grid;
  gap: 12px;
}

.mobile-process-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding: 20px;
  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);
}

.mobile-process-card span {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 999px;

  background:
    linear-gradient(180deg, #e0ba63, #c9a24d);

  color: #17120a;

  font-size: .82rem;
  font-weight: 900;
}

.mobile-process-card strong {
  display: block;
  margin-bottom: 6px;

  color: #fff;
  font-size: 1rem;
}

.mobile-process-card p {
  margin: 0;

  color: #a7a19a;
  font-size: .88rem;
  line-height: 1.55;
}


/* ===================== */
/* SERVICES SPOTLIGHT    */
/* ===================== */

.mobile-services-spotlight,
.mobile-services-pricing {
  padding: 26px 24px;
  border-radius: 26px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.18), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)),
    #101114;

  border: 1px solid rgba(201,162,77,.18);

  box-shadow:
    0 20px 52px rgba(0,0,0,.30);
}

.mobile-services-spotlight h2,
.mobile-services-pricing h2 {
  margin: 0 0 14px;

  color: #fff;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mobile-services-spotlight p,
.mobile-services-pricing p {
  color: #cbc5bb;
  line-height: 1.65;
}

.mobile-services-spotlight ul {
  display: grid;
  gap: 10px;

  margin: 22px 0 24px;
  padding: 0;

  list-style: none;
}

.mobile-services-spotlight li {
  position: relative;
  padding-left: 26px;

  color: #cbc5bb;
  font-size: .92rem;
  line-height: 1.45;
}

.mobile-services-spotlight li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: #c9a24d;
  font-weight: 900;
}

.mobile-services-spotlight .btn,
.mobile-services-pricing .btn {
  width: 100%;
  margin-top: 6px;
}

/* ===================== */
/* START PROJECT MOBILE APP VIEW */
/* ===================== */

@media (max-width: 768px) {

  .start-project-page {
    background: #050505;
    padding-bottom: 110px;
  }

  .start-project-page .site-header,
  .start-project-page .site-footer,
  .start-project-page .start-project-cta {
    display: none;
  }

  .start-project-hero {
    padding: 36px 20px 28px;
    min-height: auto;
    background:
      radial-gradient(circle at top right, rgba(201,162,77,.16), transparent 42%),
      linear-gradient(180deg, #090909, #050505);
  }

  .start-project-hero__grid {
    display: block;
  }

  .start-project-hero-title {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    line-height: .96;
  }

  .start-project-hero__text {
    margin-top: 20px;
    font-size: .98rem;
    line-height: 1.7;
  }

  .start-project-hero__points {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .start-project-point {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
  }

  .project-lookup {
    padding: 20px;
    background: #050505;
  }

  .project-lookup-card {
    display: block;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .project-lookup__content {
    margin-bottom: 22px;
  }

  .project-lookup__form {
    grid-template-columns: 1fr;
  }

  .project-lookup__form input,
  .project-lookup__form .btn {
    width: 100%;
  }

  .project-onboarding {
    padding: 20px 20px 34px;
    background: #050505;
  }

  .project-onboarding-grid {
    display: block;
  }

  .project-summary-card {
    display: none;
  }

  .project-form-shell {
    border-radius: 26px;
    overflow: hidden;
  }

  .project-progress {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 22px 18px;
    scroll-snap-type: x mandatory;
  }

  .project-progress-step {
    min-width: 76px;
    scroll-snap-align: start;
  }

  .project-progress-step::before {
    display: none;
  }

  .project-progress-step span {
    width: 38px;
    height: 38px;
  }

  .project-progress-step small {
    font-size: .68rem;
  }

  .project-autosave-bar {
    padding: 14px 18px;
    font-size: .78rem;
  }

  .project-step-panel {
    padding: 26px 20px 30px;
  }

  .project-step-panel h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .project-step-intro {
    font-size: .92rem;
    line-height: 1.65;
  }

  .project-contact-grid,
  .project-choice-grid,
  .project-type-grid,
  .project-goals-grid,
  .project-features-grid,
  .project-brand-grid,
  .project-content-grid,
  .project-needs-grid,
  .project-timeline-grid,
  .project-budget-grid,
  .project-review-grid {
    grid-template-columns: 1fr;
  }

  .project-choice-section {
    padding: 20px;
    border-radius: 22px;
  }

  .project-choice-card,
  .project-type-card,
  .project-goal-card,
  .project-feature-card,
  .project-brand-card,
  .project-content-card,
  .project-need-card,
  .project-timeline-card,
  .project-budget-card,
  .project-review-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 58px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .project-step-actions {
    position: sticky;
    bottom: 96px;
    z-index: 50;

    flex-direction: column-reverse;
    gap: 12px;

    margin: 26px -20px -30px;
    padding: 18px 20px;

    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,.72),
        rgba(5,5,5,.96)
      );

    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .project-step-actions .btn {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
  }

}

/* ===================== */
/* MOBILE APP SHELL FIX  */
/* ===================== */

.mobile-app-shell {
  display: none;
}

@media (max-width: 768px) {

  .mobile-app-shell {
    display: block;
  }

  .mobile-app-topbar {
    display: flex;
  }

  .mobile-app-nav {
    display: grid;
  }

  body.start-project-page [data-include="header"],
  body.start-project-page [data-include="footer"],
  body.start-project-page .site-header,
  body.start-project-page .site-footer {
    display: none !important;
  }

}

/* ===================== */
/* START PAGE NAV FIX    */
/* ===================== */

@media (max-width: 768px) {

  .mobile-app-nav {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
  }

  .mobile-app-nav-item {
    min-width: 0;
    width: 100%;
  }

  .mobile-app-nav-item small {
    font-size: .68rem;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-app-nav-item--center {
    width: 62px;
    height: 62px;
  }

}

/* ===================== */
/* MOBILE SUCCESS PAGE   */
/* ===================== */

.mobile-success-card {
  padding: 34px 24px;
  border-radius: 30px;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(201,162,77,.22), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(201,162,77,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.mobile-success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: linear-gradient(180deg, #e0ba63, #c9a24d);

  color: #17120a;
  font-size: 2rem;
  font-weight: 900;

  box-shadow: 0 0 34px rgba(201,162,77,.25);
}

.mobile-success-card h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.mobile-success-card p {
  color: #cbc5bb;
  line-height: 1.7;
}

.mobile-success-meta {
  margin: 26px 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(201,162,77,.07);
  border: 1px solid rgba(201,162,77,.20);
}

.mobile-success-meta strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.mobile-success-meta span {
  color: #a7a19a;
  line-height: 1.6;
}

.mobile-success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: linear-gradient(180deg, #e0ba63, #c9a24d);

  color: #17120a;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;

  box-shadow:
    0 0 34px rgba(201,162,77,.25),
    0 16px 32px rgba(0,0,0,.25);
}

/* ===================== */
/* MOBILE WORK PAGE      */
/* ===================== */

.mobile-work-type-scroll {
  display: flex;
  gap: 14px;

  overflow-x: auto;
  padding-bottom: 8px;

  scroll-snap-type: x mandatory;
}

.mobile-work-type-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-work-type-card {
  min-width: 190px;
  padding: 22px 20px;

  border-radius: 22px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.10), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);

  scroll-snap-align: start;
}

.mobile-work-type-card strong {
  display: block;
  margin-bottom: 8px;

  color: #fff;
  font-size: 1rem;
}

.mobile-work-type-card p {
  margin: 0;

  color: #a7a19a;
  font-size: .86rem;
  line-height: 1.5;
}

/* ===================== */
/* MOBILE WORK TYPE GRID */
/* ===================== */

.mobile-work-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mobile-work-type-grid .mobile-work-type-card {
  min-width: 0;
  padding: 22px 20px;
  border-radius: 22px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.12), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

.mobile-work-type-grid .mobile-work-type-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
}

.mobile-work-type-grid .mobile-work-type-card p {
  margin: 0;
  color: #a7a19a;
  font-size: .9rem;
  line-height: 1.55;
}

/* ===================== */
/* MOBILE DRAWER         */
/* ===================== */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1998;

  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .28s ease,
    visibility .28s ease;
}

.mobile-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1999;

  padding: 16px 20px 34px;

  border-top-left-radius: 30px;
  border-top-right-radius: 30px;

  background:
    radial-gradient(circle at top right,
    rgba(201,162,77,.12),
    transparent 34%),
    linear-gradient(180deg,
    rgba(22,23,26,.98),
    rgba(10,10,11,.98));

  border-top: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 -20px 60px rgba(0,0,0,.45);

  transform: translateY(105%);
  transition: transform .34s cubic-bezier(.22,.9,.24,1);
}

.mobile-drawer.is-open {
  transform: translateY(0);
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-handle {
  width: 52px;
  height: 5px;

  margin: 0 auto 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.18);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 20px;
}

.mobile-drawer-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;

  border: 0;
  border-radius: 12px;

  background: rgba(255,255,255,.06);
  color: #fff;

  cursor: pointer;
}

.mobile-drawer-links {
  display: grid;
  gap: 12px;
}

.mobile-drawer-link {
  display: block;

  padding: 18px 18px;

  border-radius: 18px;

  background:
    linear-gradient(180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.015));

  border: 1px solid rgba(255,255,255,.06);

  transition:
    border-color .25s ease,
    transform .25s ease,
    background .25s ease;
}

.mobile-drawer-link:hover {
  transform: translateY(-2px);

  border-color: rgba(201,162,77,.28);

  background:
    radial-gradient(circle at top right,
    rgba(201,162,77,.10),
    transparent 40%),
    linear-gradient(180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));
}

.mobile-drawer-link span {
  display: block;

  margin-bottom: 4px;

  color: #fff;
  font-weight: 700;
}

.mobile-drawer-link small {
  color: #aaa39a;
  line-height: 1.5;
}

/* ===================== */
/* MOBILE DRAWER FIXES   */
/* ===================== */

.mobile-drawer {
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 120px;
}

.mobile-drawer-links {
  padding-bottom: 20px;
}

.mobile-app-more-btn {
  appearance: none;
  -webkit-appearance: none;
}

.mobile-app-more-btn,
.mobile-app-more-btn:focus,
.mobile-app-more-btn:active {
  background: transparent !important;
  color: #a7a19a !important;
  outline: none;
  box-shadow: none;
}

.mobile-app-more-btn.is-active {
  color: #fff !important;
}

.mobile-app-more-btn img {
  opacity: .92;
}

/* ===================== */
/* MORE BUTTON FINAL FIX */
/* ===================== */

.mobile-app-nav .mobile-app-more-btn,
.mobile-app-nav .mobile-app-more-btn:hover,
.mobile-app-nav .mobile-app-more-btn:focus,
.mobile-app-nav .mobile-app-more-btn:active,
.mobile-app-nav .mobile-app-more-btn:focus-visible,
.mobile-app-nav .mobile-app-more-btn.is-active,
.mobile-app-nav .mobile-app-more-btn.is-drawer-open {
  appearance: none !important;
  -webkit-appearance: none !important;

  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  color: #a7a19a !important;
}

.mobile-app-nav .mobile-app-more-btn::before,
.mobile-app-nav .mobile-app-more-btn::after {
  content: none !important;
  display: none !important;
}

.mobile-app-nav .mobile-app-more-btn.is-drawer-open {
  color: #fff !important;
}

.mobile-app-nav .mobile-app-more-btn.is-drawer-open .mobile-nav-icon img {
  opacity: 1;
}

/* ===================== */
/* MORE ICON ALIGN FIX   */
/* ===================== */

.mobile-app-more-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.mobile-app-more-btn .mobile-nav-icon {
  margin-left: auto;
  margin-right: auto;
  transform: translateX(2px);
}

.mobile-app-more-btn small {
  display: block;
  width: 100%;
  text-align: center;
}

/* Fix More button layout */
.mobile-app-more-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.mobile-app-more-btn .mobile-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-app-more-btn small {
  line-height: 1;
}

.mobile-alert-drawer {
  position: fixed;
  top: 92px;
  left: 20px;
  right: 20px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);

  transition: .3s ease;

  z-index: 500;
}

.mobile-alert-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-alert-card {
  background:
    linear-gradient(
      145deg,
      rgba(18,18,20,.96),
      rgba(10,10,12,.98)
    );

  border: 1px solid rgba(255,255,255,.06);

  border-radius: 24px;

  padding: 22px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.45);
}

/* ===================== */
/* CONTACT MOBILE APP VIEW */
/* ===================== */

@media (max-width: 768px) {

  body.contact-page {
    background: #050505;
    padding-bottom: 110px;
  }

  body.contact-page [data-include="header"],
  body.contact-page [data-include="footer"],
  body.contact-page .site-header,
  body.contact-page .site-footer,
  body.contact-page .contact-trust {
    display: none !important;
  }

  .hero-contact {
    padding: 118px 20px 34px;
    min-height: auto;
    background:
      radial-gradient(circle at top right, rgba(201,162,77,.16), transparent 42%),
      linear-gradient(180deg, #090909, #050505);
  }

  .hero-contact .container {
    width: 100%;
  }

  .contact-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: .98;
  }

  .contact-hero-highlights {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .contact-highlight {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
  }

  .contact-main {
    padding: 20px;
    background: #050505;
  }

  .contact-main .container {
    width: 100%;
  }

  .contact-grid {
    display: block;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .contact-info-card {
    margin-top: 22px;
  }

  .contact-card-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 58px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .contact-submit-btn {
    min-height: 60px;
    border-radius: 14px;
  }

}

/* ===================== */
/* QUOTE MOBILE APP VIEW */
/* ===================== */

@media (max-width: 768px) {

  body.quote-page {
    background: #050505;
    padding-bottom: 110px;
  }

  body.quote-page [data-include="header"],
  body.quote-page [data-include="footer"],
  body.quote-page .site-header,
  body.quote-page .site-footer,
  body.quote-page .quote-custom-cta {
    display: none !important;
  }

  .quote-hero {
    padding: 118px 20px 34px;
    min-height: auto;
    background:
      radial-gradient(circle at top right, rgba(201,162,77,.16), transparent 42%),
      linear-gradient(180deg, #090909, #050505);
  }

  .quote-hero .container {
    width: 100%;
  }

  .quote-hero__grid {
    display: block;
  }

  .quote-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: .98;
  }

  .quote-hero__line {
    margin: 26px 0 22px;
  }

  .quote-hero__text {
    font-size: .98rem;
    line-height: 1.75;
  }

  .quote-hero__list {
    gap: 14px;
    margin-top: 28px;
  }

  .quote-response-card {
    margin-top: 28px;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .quote-response-card h2 {
    margin-bottom: 20px;
  }

  .quote-response-item {
    gap: 14px;
    padding: 18px 0;
  }

  .quote-trust-strip {
    display: none;
  }

  .quote-main {
    padding: 20px;
    background: #050505;
  }

  .quote-main .container {
    width: 100%;
  }

  .quote-main-grid {
    display: block;
  }

  .quote-sidebar {
    display: none;
  }

  .quote-form-card {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .quote-form-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .quote-form-heading p {
    font-size: .95rem;
    line-height: 1.7;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 58px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .quote-submit-btn {
    min-height: 60px;
    border-radius: 14px;
  }

}

/* ===================== */
/* MOBILE ABOUT PAGE     */
/* ===================== */

.mobile-about-card {
  padding: 24px 22px;
  border-radius: 24px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.10), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

.mobile-about-card p {
  margin: 0;
  color: #cbc5bb;
  font-size: .95rem;
  line-height: 1.7;
}

/* ===================== */
/* HIDE MOBILE UI DESKTOP */
/* ===================== */

.mobile-app-nav,
.mobile-app-footer-note,
.mobile-drawer,
.mobile-drawer-overlay,
.mobile-alert-drawer {
  display: none;
}

@media (max-width: 768px) {
  .mobile-app-nav {
    display: grid;
  }

  .mobile-app-footer-note,
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-alert-drawer {
    display: block;
  }
}

/* ===================== */
/* MOBILE PRIVACY PAGE   */
/* ===================== */

.mobile-privacy-page .mobile-app-hero-card {
  background:
    radial-gradient(circle at top right, rgba(201,162,77,.20), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)),
    #101114;
}

.mobile-privacy-updated {
  display: inline-flex;

  margin-top: 18px;
  padding: 10px 14px;

  border-radius: 999px;

  background: rgba(201,162,77,.10);
  border: 1px solid rgba(201,162,77,.22);

  color: #cbc5bb;
  font-size: .78rem;
  font-weight: 700;
}

.mobile-privacy-summary-grid {
  display: grid;
  gap: 12px;
}

.mobile-privacy-summary-card {
  padding: 20px;

  border-radius: 22px;

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.08), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);
}

.mobile-privacy-summary-card strong {
  display: block;
  margin-bottom: 8px;

  color: #fff;
  font-size: 1rem;
}

.mobile-privacy-summary-card p {
  margin: 0;

  color: #a7a19a;
  font-size: .9rem;
  line-height: 1.55;
}

.mobile-privacy-policy-card {
  padding: 24px 22px;

  border-radius: 26px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
    #101114;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.mobile-privacy-section {
  padding-bottom: 24px;
  margin-bottom: 24px;

  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.mobile-privacy-section h3 {
  margin: 0 0 12px;

  color: #fff;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.mobile-privacy-section p {
  margin: 0 0 12px;

  color: #cbc5bb;
  font-size: .94rem;
  line-height: 1.7;
}

.mobile-privacy-section p:last-child {
  margin-bottom: 0;
}

.mobile-privacy-section a {
  color: #c9a24d;
  font-weight: 800;
}

/* active drawer link */
.mobile-drawer-link.is-active {
  border-color: rgba(201,162,77,.32);

  background:
    radial-gradient(circle at top right, rgba(201,162,77,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

/* ===================== */
/* START FORM FIELD COVER FIX */
/* ===================== */

@media (max-width: 768px) {

  .project-step-panel {
    padding-bottom: 220px;
  }

  .project-step-actions {
    bottom: 104px;
  }

  .project-step-panel textarea,
  .project-step-panel input,
  .project-step-panel select {
    scroll-margin-bottom: 240px;
  }

}