:root {
  --primary: #005387;
  --primary-light: #0b67a8;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --bg: #f8fafc;
  --line: #dbe4ee;
  --blue: #005387;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(0,83,135,0.08), rgba(255,255,255,1));
  border-bottom: 1px solid var(--line);
}
.hero-grid, .two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 42px; align-items: center; }
.eyebrow {
  display: inline-block; padding: 8px 14px; border-radius: 999px; color: var(--blue);
  background: rgba(0,83,135,0.06); border: 1px solid rgba(0,83,135,0.12); font-weight: 700; font-size: 14px;
}
.hero h1, .section-title h2 { margin: 18px 0 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; }
.section-title h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.hero p, .section-title p, .lead { color: var(--muted); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button, .button-outline {
  display: inline-flex; align-items: center; justify-content: center; padding: 15px 22px; border-radius: 18px; font-weight: 700;
}
.button { background: var(--blue); color: var(--white); box-shadow: 0 12px 28px rgba(0,83,135,0.18); }
.button-outline { border: 1px solid #b6c7d8; color: var(--text); background: var(--white); }
.card, .info-box, .contact-box, .stat, .crane-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

.card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}
.grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 32px; padding: 32px; }
.badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: #eef3f8 ; border: 1px solid rgba(0,83,135,0.12);
  color: var(--primary); font-size: 0.95rem; font-weight: 700;
}
.title { margin: 20px 0 0; font-size: 48px; line-height: 1.05; font-weight: 800; }
.info-box {
  margin-top: 28px; background: var(--primary); color: var(--white);
  border-radius: 28px; padding: 32px; box-shadow: 0 18px 35px rgba(0,83,135,.18);
}
.contact-item {
  display: flex; gap: 14px; align-items: center; text-decoration: none; color: inherit;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1);
  border-radius: 18px; padding: 16px 18px; margin-bottom: 14px;
}
.meta { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.9); }
.map-wrap {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
}
.map-cookie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 24px;
  text-align: center;
  color: #475569;
  background: #f8fafc;
}
.map-wrap iframe {
  display: none;
  width: 100%;
  height: 360px;
  border: 0;
}
.form-panel { border: 1px solid var(--border); border-radius: 32px; background: var(--bg-soft); padding: 28px; }
.form-kicker { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.form-title { margin: 16px 0 0; font-size: 40px; line-height: 1.1; font-weight: 800; }
.notice { margin-top: 22px; border-radius: 16px; padding: 14px 16px; font-size: 14px; }
.notice.success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.notice.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
form { margin-top: 26px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: grid; gap: 8px; }
label span { font-size: 14px; font-weight: 700; color: #334155; }
input, select, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 18px; background: var(--white);
  padding: 16px 18px; font: inherit; color: var(--text); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); }
textarea { min-height: 180px; resize: vertical; }
.actions { padding-top: 8px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer;
  background: var(--primary); color: var(--white); border-radius: 18px;
  padding: 16px 24px; font-size: 16px; font-weight: 700;
  box-shadow: 0 12px 25px rgba(0,83,135,.18);
}
.icon {
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(255,255,255,.12); flex: 0 0 20px;
}
.site-footer { border-top: 1px solid var(--line); padding: 34px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-grid p { margin: 6px 0; color: var(--muted); }
.footer-logo { height: 72px; width: auto; margin-bottom: 14px; image-rendering: -webkit-optimize-contrast; }
.notice { margin-top: 14px; color: var(--muted); font-size: 0.95rem; }
main {
  padding-top: 28px;
  padding-bottom: 40px;
}

main .card {
  margin-top: 0;
}

.site-footer {
  margin-top: 0;
}