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

:root {
  --blue: #0a3d91;
  --blue-dark: #062a66;
  --blue-soft: #eaf0fa;
  --ink: #0f1d35;
  --ink-soft: #3a4865;
  --muted: #6a7693;
  --line: #e3e8f0;
  --paper: #ffffff;
  --paper-2: #f6f8fc;
  --paper-3: #eef2f8;
  --green: #1ea761;
  --green-dark: #178a51;
  --green-soft: #e7f6ee;
  --amber: #9a6700;
  --amber-soft: #fff7df;
  --red: #b42318;
  --red-soft: #fff1ef;
  --shadow: 0 24px 60px rgba(15, 29, 53, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper-2); color: var(--ink); }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

[hidden] { display: none !important; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 18px; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-sms { background: #0f4c81; color: #fff; border-color: #0f4c81; }
.btn-sms:hover { background: #0b3b66; border-color: #0b3b66; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: #fff; color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); }
.btn-block { width: 100%; }
.btn:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }

.input, .select, .textarea {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.textarea { min-height: 112px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230f1d35' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.lbl { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }

.topline {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.topline .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 38px;
}
.topline a { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}
.brand-logo { height: 42px; width: auto; }
.nav { display: flex; gap: 20px; align-items: center; color: var(--ink-soft); font-size: 14px; font-weight: 650; }
.nav a:hover { color: var(--blue); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.header-actions .btn { min-height: 40px; padding: 9px 14px; font-size: 13px; }

.op-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.op-hero-media { position: absolute; inset: 0; z-index: 0; }
.op-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.op-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,42,102,0.88) 0%, rgba(6,42,102,0.64) 46%, rgba(6,42,102,0.26) 100%),
    linear-gradient(180deg, rgba(6,42,102,0.20) 0%, rgba(6,42,102,0.82) 100%);
  z-index: 1;
}
.op-hero .wrap { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 44px; }
.hero-content { max-width: 760px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-content h1 { margin-top: 22px; font-size: clamp(40px, 6vw, 76px); line-height: 0.98; letter-spacing: -0.04em; }
.hero-title-line { display: block; white-space: nowrap; }
.hero-rental-highlight, .hero-consignment-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #fdd835;
  text-shadow: 0 0 18px rgba(253, 216, 53, 0.32), 0 0 34px rgba(255,255,255,0.14);
}
.hero-rental-highlight::before, .hero-consignment-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.01em;
  height: 0.34em;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(253, 216, 53, 0.38), rgba(253, 216, 53, 0.14) 58%, rgba(253, 216, 53, 0) 74%);
  filter: blur(7px);
}
.hero-glow-text {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 18px rgba(253, 216, 53, 0.34), 0 0 34px rgba(30, 167, 97, 0.18);
}
.hero-glow-text::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.02em;
  height: 0.38em;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(253, 216, 53, 0.44), rgba(253, 216, 53, 0.16) 55%, rgba(253, 216, 53, 0) 72%);
  filter: blur(7px);
}
.hero-content p { max-width: 680px; margin-top: 22px; color: rgba(255,255,255,0.88); font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 40px;
}
.hero-stats.hero-stats-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
  width: 100%;
}
.hero-stats.hero-stats-investor {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  width: 100%;
}
.hero-stats-investor .hero-stat {
  grid-template-columns: 1fr;
  align-content: center;
  align-items: center;
  gap: 8px;
  min-height: 100px;
}
.hero-stats-investor .hero-stat strong {
  font-size: 17px;
  line-height: 1.2;
}
.hero-stats-investor .hero-stat span {
  font-size: 13px;
  line-height: 1.45;
}
.hero-stat {
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  padding: 16px;
  backdrop-filter: blur(10px);
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(44px, max-content) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.hero-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat span {
  display: block;
  margin-top: 0;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.form-band { position: relative; z-index: 5; margin-top: -34px; padding-bottom: 84px; }
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}
.context-card, .lead-card, .section-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.context-card { padding: 30px; }
.context-card h2, .section-head h2 { font-size: 30px; line-height: 1.12; letter-spacing: -0.03em; }
.context-card p { margin-top: 12px; color: var(--muted); }
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}
.check-row > div { min-width: 0; padding-top: 1px; }
.check-row strong { display: block; font-size: 15px; line-height: 1.25; }
.check-row > div > span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.lead-card { padding: 26px; }
.lead-card .form-head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; margin-bottom: 20px; }
.lead-card h2 { font-size: 25px; line-height: 1.15; letter-spacing: -0.03em; }
.form-pill { border-radius: 999px; background: var(--green-soft); color: var(--green); padding: 7px 10px; font-size: 12px; font-weight: 800; white-space: nowrap; }

.form-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}
.form-progress span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.form-progress span.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}
.form-back {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line);
}
.form-back:hover {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.fields { display: grid; gap: 14px; }
.row-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.row-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.form-section-title { margin-top: 4px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.form-error, .form-success {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}
.form-error { background: var(--red-soft); color: var(--red); }
.form-success { background: var(--green-soft); color: var(--green); }
.privacy { color: var(--muted); font-size: 12px; line-height: 1.45; }

.section { padding: 84px 0; }
.section.white { background: #fff; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.section-card { padding: 24px; box-shadow: 0 12px 32px rgba(15,29,53,0.07); }
.section-card .num { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; }
.section-card h3 { margin-top: 12px; font-size: 19px; line-height: 1.2; }
.section-card p { margin-top: 10px; color: var(--muted); font-size: 14px; }

.cta-panel {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}
.cta-panel h2 { font-size: 32px; line-height: 1.12; }
.cta-panel p { margin-top: 8px; color: rgba(255,255,255,0.78); }
.cta-panel > div:first-child { min-width: 0; }
.cta-actions { display: flex; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; flex: 0 0 auto; }
.cta-actions .btn { white-space: nowrap; flex: 0 0 auto; }

.disclaimer {
  border: 1px solid #f0d38b;
  border-radius: 18px;
  background: var(--amber-soft);
  color: #5f4100;
  padding: 18px;
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 44px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.footer p, .footer a { color: rgba(255,255,255,0.76); }
.footer h4 { margin-bottom: 12px; }
.footer ul { display: grid; gap: 8px; list-style: none; }

@media (max-width: 1120px) and (min-width: 981px) {
  .hero-stats.hero-stats-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .form-shell { grid-template-columns: 1fr; }
  .grid-3, .hero-stats, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topline .wrap { justify-content: center; text-align: center; }
  .topline .hide-mobile { display: none; }
  .site-header .wrap { min-height: 68px; }
  .header-actions .btn-ghost { display: none; }
  .op-hero { min-height: 620px; }
  .op-hero .wrap { padding-top: 64px; padding-bottom: 34px; }
  .hero-content p { font-size: 16px; }
  .row-2, .row-3 { grid-template-columns: 1fr; }
  .lead-card, .context-card { padding: 20px; border-radius: 20px; }
  .lead-card .form-head { display: grid; }
  .cta-panel { display: grid; padding: 26px; }
  .cta-actions { display: grid; justify-content: stretch; }
  body[data-static-page="rental"] .cta-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  body[data-static-page="rental"] .cta-actions .btn { min-width: 0; padding-left: 10px; padding-right: 10px; font-size: 13px; }
  .cta-panel .btn { width: 100%; }
}

@media (max-width: 480px) {
  .rental-hero .hero-content h1 {
    font-size: 28px;
    line-height: 1.04;
    letter-spacing: 0;
  }
}

@media (max-width: 360px) {
  .rental-hero .hero-content h1 { font-size: 24px; }
}


.policy-wrap .section-head { margin-bottom: 26px; }
.policy-copy {
  max-width: 860px;
  display: grid;
  gap: 18px;
}
.policy-copy h2 {
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.policy-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}


.static-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
}
.static-lang-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.static-lang-toggle button.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 16px rgba(15,29,53,0.10);
}
.site-header .btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.site-header .btn-ghost:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.compact-hero {
  min-height: auto;
  padding: 88px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, var(--paper-2));
}
.compact-hero::after,
.compact-hero .op-hero-media { display: none; }
.compact-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.compact-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
}
.compact-hero p { color: var(--muted); }
.compact-hero .context-card { color: var(--ink); }
@media (max-width: 1060px) {
  .site-header .wrap { align-items: flex-start; padding-top: 14px; padding-bottom: 14px; flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 820px) {
  .static-lang-toggle { order: -1; }
  .compact-hero .hero-grid { grid-template-columns: 1fr; }
}
