:root {
  --ink: #14251f;
  --ink-soft: #3d5148;
  --paper: #f7faf8;
  --card: #ffffff;
  --line: #dde6e0;
  --brand: #1f7a53;
  --brand-dark: #145c3d;
  --brand-tint: #e6f3ec;
  --accent: #0f766e;
  --radius: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: var(--brand-dark); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span { color: var(--brand); }

nav.site a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 24px;
}

nav.site a:hover { color: var(--brand-dark); }

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1.5px solid var(--brand);
}

.btn.secondary:hover { background: var(--brand-tint); }

.hero {
  padding: 76px 0 56px;
  background:
    radial-gradient(circle at 82% -10%, rgba(31,122,83,0.16), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(15,118,110,0.10), transparent 45%);
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 18ch;
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 30px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 40px;
  max-width: 900px;
}

.badge {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.94rem;
}

.badge .mark {
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

section { padding: 64px 0; }
section.tint { background: var(--brand-tint); }

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 36px;
  font-size: 1.03rem;
}

.fleet {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

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

.fleet-art {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.fleet-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,30,20,0.55) 0%, rgba(10,30,20,0) 38%);
  z-index: 1;
}

.fleet-art .cap { position: relative; z-index: 2; }

.fleet-art .cap {
  position: relative;
  color: #eafff4;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0,0,0,0.18);
  padding: 8px 12px;
  border-radius: 8px;
}

.fleet ul.highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.fleet ul.highlights li {
  padding-left: 28px;
  position: relative;
}

.fleet ul.highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.fleet ul.highlights strong { display: block; margin-bottom: 2px; }

.callout {
  margin-top: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.95rem;
}

.callout h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.callout p { margin: 0 0 8px; color: var(--ink-soft); }
.callout p:last-child { margin-bottom: 0; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  background: var(--brand-tint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

form.request {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  gap: 18px;
}

form.request .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  form.request .row-2 { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.96rem;
  font-family: inherit;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.field.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.field.check input { width: auto; margin-top: 3px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: 8px;
  display: none;
}

.form-status.ok { display: block; background: #e6f3ec; color: var(--brand-dark); }
.form-status.err { display: block; background: #fdeceb; color: #9b2c1f; }

footer.site {
  background: var(--ink);
  color: #d6e4dd;
  padding: 48px 0 28px;
  margin-top: 40px;
  font-size: 0.9rem;
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

footer.site h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 0.95rem;
}

footer.site a { color: #b9ccc2; text-decoration: none; }
footer.site a:hover { color: #fff; }

footer.site .links { display: grid; gap: 8px; }

footer.site .bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #8fa89c;
  font-size: 0.82rem;
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal h1 { font-size: 1.8rem; margin-bottom: 6px; }
.legal .updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.15rem; margin-top: 32px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.97rem; }
.legal a.back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--brand-dark);
  text-decoration: none;
}
