/* ==========================================================================
   Leasing page (page-scoped) — no external deps, no Tailwind
   Naming system: lease-*
   ========================================================================== */

.lease {
  color: #0f172a;
  background: #fff;
}

/* Layout helpers */
.lease-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .lease-wrap { padding: 0 16px; }
}

/* ==========================================================================
   Typography + pills
   ========================================================================== */

.lease-section-head h2,
.lease-center-head h2,
.lease-submit-title {
  margin: 0 0 12px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #5c0f8c;
}

.lease-section-head p,
.lease-center-head p,
.lease-submit-desc {
  margin: 0;
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .lease-section-head h2,
  .lease-center-head h2,
  .lease-submit-title {
    font-size: 36px;
  }
}

/* UV-like pill */
.lease-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    border-radius: 999px;
    border: 1px solid rgb(255 160 0 / 36%);
    background: rgb(255 160 0 / 40%);
    color: #14002e;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 11px rgb(0 0 0 / 11%), 0 10px 24px rgba(255, 160, 0, 0.12);
    margin-bottom: 15px;
}

.lease-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #ffa000;
  box-shadow: 0 0 12px rgba(255,160,0,0.9), 0 0 4px rgba(255,255,255,0.45);
}

.lease-pill-center { justify-content: center; }

.lease-pill-invert {
    background: rgb(255 160 0 / 33%);
    border-color: rgb(255 160 0 / 40%);
    color: #ffffff;
    box-shadow: 0px 0px 20px #0707074f;
}

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

.lease-hero {
  position: relative;
  overflow: hidden;
  padding-top: 130px; /* slightly tighter so content sits nicer like mockup */
}

.lease-hero-bg { position: absolute; inset: 0; }

.lease-hero-bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lease-hero-bgfade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.30), rgba(14, 165, 233, 0.10), #007fff69);
}

.lease-hero-bgshade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(92,15,140,0.25), transparent, transparent);
}

.lease-hero-wrap {
  position: relative;
  padding-top: 44px;
  padding-bottom: 54px;
}

.lease-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center; /* helps the card sit like the mockup */
}

.lease-hero-left { max-width: 720px; }

.lease-hero-title {
    margin: 0;
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 5px 20px rgb(0 51 105 / 70%);
}

.lease-hero-title-accent { color: #ffa000; }

.lease-hero-sub {
    margin: 24px 0 0;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 18px rgb(0 25 58 / 54%);
    max-width: 62ch;
}

.lease-hero-highlight {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
}

.lease-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons (same system) */
.lease-btn {
  height: 56px;
  padding: 0 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, opacity 160ms ease;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
}

.lease-btn:active { transform: translateY(1px); }

.lease-btn-primary {
  background: #5c0f8c;
  color: #ffffff;
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.lease-btn-primary:hover {
  background: #4b0b74;
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.lease-btn-ghost {
  background: rgba(255,255,255,0.95);
  color: #5c0f8c;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.lease-btn-ghost:hover {
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.lease-btn-wide { min-width: 220px; }

/* Base card */
.lease-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 22px 60px rgba(0,0,0,0.10);
}

/* Hero right */
.lease-hero-right { width: 100%; }

/* Hero card (match mockup: subtle gray background, white inner boxes) */
.lease-hero-card {
  background: #f6fafc; /* per mockup */
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.16);
  padding: 18px;
}

/* Card header */
.lease-hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lease-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-hero-card-title {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Badge overlap like mockup */
.lease-badge-stack {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.lease-badge {
    width: 45px;
    height: 45px;
    border-radius: 999px;
    border: 4px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 6px rgb(0 0 0 / 13%);
    position: relative;
    z-index: 1;
}

.lease-badge + .lease-badge {
  margin-left: -12px;      /* overlap */
  z-index: 2;              /* top badge */
  transform: translateY(-1px);
}

.lease-badge-green { background: #3ad531; }
.lease-badge-orange { background: #ffa000; }

.lease-badge img {
    width: 100%;
}

/* Spec grid (the missing part you lost) */
.lease-spec-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lease-spec {
  border-radius: 18px;
  border: 1px solid rgba(243,244,246,1); /* border-gray-100 */
  background: #ffffff;                  /* bg-white */
  padding: 14px;
}

.lease-spec-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(51,65,85,0.95);
}

.lease-ic {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: rgba(51,65,85,0.85);
}

.lease-ic svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lease-spec-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-spec-value {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.lease-spec-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(100,116,139,0.95);
}

/* Best fit row (under the 4 boxes) */
.lease-bestfit {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(243,244,246,1);
  background: rgba(255,255,255,0.55);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lease-bestfit-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-bestfit-value {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.lease-bestfit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  color: #5c0f8c;
  white-space: nowrap;
}

.lease-bestfit-link:hover { opacity: 0.85; }

/* Responsive hero layout */
@media (min-width: 1024px) {
  .lease-hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 32px;
  }
  .lease-spec-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .lease-hero { padding-top: 120px; }
  .lease-hero-wrap { padding-top: 36px; padding-bottom: 44px; }
  .lease-hero-title { font-size: 56px; }
  .lease-hero-sub { font-size: 18px; }
  .lease-btn { height: 48px; padding: 0 24px; }
}

@media (max-width: 420px) {
  .lease-hero-title { font-size: 46px; }
  .lease-bestfit { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   REQUIRED PURPLE STRIP
   ========================================================================== */

.lease-strip {
  background: #5c0f8c;
  color: #ffffff;
}

.lease-strip-inner { padding: 12px 24px; }

.lease-strip-text {
    margin: 0;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-size: 20px;
}

/* ==========================================================================
   BANDS
   ========================================================================== */

.lease-band { padding: 64px 0; }

.lease-band-soft {
  background: rgba(255,255,255,0.80);
  border-top: 1px solid rgba(255,255,255,0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lease-band-white { background: #ffffff; }

/* Center head */
.lease-center-head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.lease-center-head .lease-pill { margin-bottom: 14px; }

/* ==========================================================================
   SELL-FIRST SECTION (left-only now)
   ========================================================================== */

.lease-sell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.lease-sell-cards3 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lease-sell-card {
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.lease-sell-card-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-sell-card-title {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.lease-sell-card-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(100,116,139,0.95);
}

@media (min-width: 1024px) {
  .lease-sell-cards3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   SELL-FIRST SECTION (restore right card)
   ========================================================================== */

.lease-sell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

/* Right column container (so it sits aligned with left copy) */
.lease-sell-right {
  width: 100%;
}

@media (min-width: 1024px) {
  .lease-sell-grid {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }
}

/* Right “What you get” card */
.lease-what {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(0,0,0,0.08);
}

.lease-what-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lease-what-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,160,0,0.18);
  color: rgba(154,52,18,0.90);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lease-what-assure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(100,116,139,0.95);
}

.lease-what-assure-text {
  font-size: 12px;
  font-weight: 900;
}

/* Checklist */
.lease-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(51,65,85,0.98);
  font-size: 14px;
}

.lease-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.lease-check {
  width: 18px;
  height: 18px;
  color: #5c0f8c;
  margin-top: 2px;
  flex: 0 0 18px;
}

.lease-check svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Bottom row inside the card */
.lease-what-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lease-what-bottom-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(100,116,139,0.95);
}

.lease-what-bottom-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.lease-what-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #5c0f8c;
  font-weight: 900;
  font-size: 14px;
}

.lease-what-link:hover { opacity: 0.85; }


/* ==========================================================================
   VISUALS
   ========================================================================== */

.lease-visuals-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.lease-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.lease-visual-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: rgba(92,15,140,0.06);
}

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

.lease-visual-body { padding: 18px 18px 20px; }

.lease-visual-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-visual-title {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.lease-visual-text {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(71,85,105,0.95);
}
/* Visual card hover effect */

.lease-visual {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lease-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}

@media (min-width: 900px) {
  .lease-visuals-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Services gallery (added to visuals section) */
.lease-services-card {
  margin-top: 26px;
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.lease-services-head {
  padding: 22px 22px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lease-services-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-services-title {
  margin: 8px 0 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.lease-services-desc {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71,85,105,0.95);
  max-width: 70ch;
}

@media (max-width: 900px) {
  .lease-services-title { font-size: 28px; }
}

.lease-services-grid {
  padding: 0 22px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px) {
  .lease-services-grid { grid-template-columns: repeat(4, 1fr); }
}

.lease-service-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(92,15,140,0.06);
  border: 1px solid rgba(15,23,42,0.06);
  min-height: 200px;
}

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

.lease-service-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

@media (max-width: 859px) {
  .lease-services-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   MARKETS
   ========================================================================== */

.lease-markets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.lease-stat-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lease-stat {
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.lease-stat-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-stat-value {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}

.lease-stat-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(100,116,139,0.95);
}

.lease-map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(0,0,0,0.08);
}

.lease-map-top { padding: 18px 18px 0; }

.lease-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,116,139,0.95);
}

.lease-map-title {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.lease-map-media {
  margin-top: 14px;
  aspect-ratio: 16 / 10;
  background: rgba(92,15,140,0.06);
}

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

.lease-map-bottom {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(15,23,42,0.06);
}

.lease-map-note {
  margin: 0;
  font-size: 14px;
  color: rgba(71,85,105,0.95);
  line-height: 1.55;
}

.lease-map-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 900;
  color: #5c0f8c;
}

.lease-map-link:hover { opacity: 0.85; }

@media (min-width: 1024px) {
  .lease-markets {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
  }
  .lease-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   LEASING CRITERIA (mockup style)
   ========================================================================== */

.lease-criteria-headrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lease-criteria-left h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.lease-criteria-left p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(71,85,105,0.95);
}

@media (max-width: 900px) {
  .lease-criteria-headrow { flex-direction: column; align-items: flex-start; }
  .lease-criteria-left h2 { font-size: 34px; }
}

.lease-criteria-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 980px) {
  .lease-criteria-cards { grid-template-columns: repeat(4, 1fr); }
}

.lease-criteria-card {
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition:transform 220ms ease,box-shadow 220ms ease,border-color 220ms ease;
  will-change: transform;
}
.lease-criteria-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.04);

  border-color: rgba(92,15,140,0.25);
}

.lease-criteria-icbox {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,23,42,0.06);
  margin-bottom: 12px;
}

.lease-criteria-icbox svg {
  width: 20px;
  height: 20px;
  display: block;
}

.lease-ic-blue { background: rgba(59,130,246,0.14); color: rgba(37,99,235,0.95); }
.lease-ic-amber { background: rgba(255,160,0,0.18); color: rgba(154,52,18,0.90); }
.lease-ic-green { background: rgba(34,197,94,0.16); color: rgba(21,128,61,0.95); }
.lease-ic-purple { background: rgba(92,15,140,0.14); color: rgba(92,15,140,0.95); }

.lease-criteria-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}

.lease-criteria-text {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(71,85,105,0.95);
}

/* ==========================================================================
   SUBMIT (purple background kept, mockup cards)
   ========================================================================== */

.lease-submit {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #ffffff;
}

.lease-submit-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 18% 22%, rgba(155, 81, 224, 0.55), rgba(92, 15, 140, 0.0) 60%),
    radial-gradient(820px 520px at 80% 55%, rgba(255, 160, 0, 0.14), rgba(92, 15, 140, 0.0) 62%),
    linear-gradient(180deg, rgba(63, 14, 97, 0.95), rgba(92, 15, 140, 0.92));
}

.lease-submit-wrap { position: relative; z-index: 1; }

.lease-submit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .lease-submit-grid {
    grid-template-columns: 5fr 7fr;
    gap: 26px;
  }
}

/* Left image card (mockup style) */
.lease-submit-imagecard {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  position: relative;
  min-height: 520px;
}

.lease-submit-imagecard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 360px at 30% 18%, rgba(255,255,255,0.14), rgba(255,255,255,0.0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  pointer-events: none;
}

.lease-submit-imagebg {
    position: absolute;
    inset: 0;
}

.lease-submit-imagebg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.lease-submit-imagebg::after
 {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /*background: linear-gradient(180deg, #7a00ff, #813bb800, #ffa800eb);*/
    background: linear-gradient(120deg, #002d49a6, #813bb800, #ffa80000);
    opacity: .8;
}


.lease-submit-imagetext {
  position: relative;
  padding: 22px;
}

.lease-submit-imagetext .lease-pill { margin-bottom: 14px; }

.lease-submit-image-title {
    margin: 0;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 -1px 13px rgb(0 10 54 / 41%);
}

.lease-submit-image-title span { color: #ffa000; }

.lease-submit-image-desc {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 48ch;
}

.lease-submit-image-foot {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
}

.lease-submit-image-foot strong { color: rgba(255,255,255,0.96); }

/* Right card (white like mockup) */
.lease-form-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    padding: 20px;
}

.lease-form-card-head {
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.lease-form-card-head h3 {
    margin: 0;
    font-size: 45px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #5c0f8c;
}

.lease-form-card-head p {
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(71, 85, 105, 0.95);
}

/* --------------------------------------------------------------------------
   CTA body (drop-in replacement for the old form)
   Matches former .lease-form padding + spacing
   -------------------------------------------------------------------------- */

.lease-cta {
  padding: 18px 22px 22px; /* SAME as former .lease-form */
  margin: 0;
  display: grid;
  gap: 14px;               /* feels like form sections */
}

.lease-cta-copy { display: grid; gap: 10px; }

.lease-cta-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.lease-cta-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(71, 85, 105, 0.95);
}

.lease-cta-list {
    margin: 20px 0 40px;
    padding-left: 18px;
    display: grid;
    gap: 6px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(51, 65, 85, 0.92);
}

.lease-cta-list li { margin: 0; }

/* CTA actions row: button + fineprint, same rhythm as former .lease-form-actions */
.lease-cta-actions {
  margin-top: 2px;
  display: grid;
  gap: 10px;
  align-items: center;
}

@media (min-width: 900px) {
  .lease-cta-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.lease-cta-fineprint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(71,85,105,0.90);
}

/* Make the CTA button look EXACTLY like the old submit button + hover */
.lease-cta .lease-btn-primary {
  /* override the purple primary inside this card only */
  background: #ffa000;
  color: #14002e;
  border-color: rgba(0,0,0,0.0);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22), 0 10px 26px rgba(255,160,0,0.18);
}

.lease-cta .lease-btn-primary:hover {
  background: #ffb020;
  box-shadow: 0 22px 44px rgba(0,0,0,0.26), 0 12px 30px rgba(255,160,0,0.20);
}

/* Remove old form-only CSS that is no longer needed */
.lease-form,
.lease-form-grid,
.lease-field,
.lease-field-full,
.lease-label,
.lease-input,
.lease-textarea,
.lease-form-actions,
.lease-form-fineprint,
.lease-hp {
  /* intentionally empty - old form classes no longer used */
}

/* Direct contact block under card */
.lease-direct-contact {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}

.lease-direct-title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.lease-direct-text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.lease-direct-text a {
  color: #ffa000;
  font-weight: 800;
  text-decoration: none;
}

.lease-direct-text a:hover {
  text-decoration: underline;
}

.lease-direct-sub {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
