:root {
  --blue: #0551d0;
  --blue-dark: #043a94;
  --navy: #0a1e52;
  --lime: #e4f12c;
  --cloud: #f6f7fb;
  --graphite: #1c1c1c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* top bar */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.topbar img { height: 44px; width: auto; }
.lang { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.lang a { text-decoration: none; color: var(--navy); opacity: 0.45; padding: 4px 6px; }
.lang a.active { opacity: 1; color: var(--blue); border-bottom: 3px solid var(--lime); }

/* hero */
.hero { position: relative; border-radius: 24px; overflow: hidden; color: #fff; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 30, 90, 0.88) 0%, rgba(5, 81, 208, 0.55) 55%, rgba(5, 81, 208, 0.08) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 72px 48px; max-width: 560px; }
.hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
.hero .bar { width: 64px; height: 5px; background: var(--lime); border-radius: 3px; margin: 20px 0; }
.hero p { font-size: 17px; color: rgba(255, 255, 255, 0.92); }
@media (max-width: 640px) { .hero-inner { padding: 44px 24px; } }

/* contact cards */
.cards { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: -34px; position: relative; z-index: 2; padding: 0 8px; }
.card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 18px; padding: 18px 20px;
  border: 1.5px solid rgba(10, 30, 82, 0.12);
  box-shadow: 0 10px 30px rgba(10, 30, 82, 0.10);
  text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(10, 30, 82, 0.16); }
.card .ico { flex: 0 0 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; }
.card .ico svg { width: 22px; height: 22px; }
.card.wa .ico { background: #22c05522; } .card.wa .ico svg { fill: #1faa4d; }
.card.tel .ico { background: var(--navy); } .card.tel .ico svg { fill: #fff; }
.card.mail .ico { background: var(--lime); } .card.mail .ico svg { fill: var(--navy); }
.card b { display: block; font-size: 15px; }
.card span { font-size: 14px; color: rgba(10, 30, 82, 0.65); }

/* location */
.location { display: grid; gap: 24px; grid-template-columns: 1fr 1.2fr; align-items: center; background: var(--cloud); border-radius: 24px; padding: 32px; margin-top: 48px; }
@media (max-width: 760px) { .location { grid-template-columns: 1fr; } }
.location h2 { font-size: 26px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.location h2 svg { width: 26px; height: 26px; fill: var(--blue); }
.location address { font-style: normal; margin: 14px 0 20px; font-size: 16px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px; padding: 12px 18px; border-radius: 12px;
}
.btn:hover { background: var(--blue); }
.btn svg { width: 16px; height: 16px; fill: #fff; }
.map { border: 0; width: 100%; height: 280px; border-radius: 16px; }

/* usp */
.usp { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin: 56px 0; text-align: center; }
.usp .item svg { width: 44px; height: 44px; margin: 0 auto 10px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.usp .item b { display: block; font-size: 15px; }

/* note */
.note { display: flex; align-items: center; gap: 18px; background: #fdf9e9; border-radius: 20px; padding: 22px 26px; }
.note .cal { flex: 0 0 52px; height: 52px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.note .cal svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.note p { font-size: 15px; }

/* footer */
footer { background: var(--navy); color: #fff; margin-top: 56px; }
.foot-main { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; padding: 28px 0; }
.foot-main img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.foot-main img.color { filter: none; }
.foot-main .sep { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.2); }
.foot-main a { color: #fff; text-decoration: none; font-size: 14px; }
.foot-main a:hover { color: var(--lime); }
.foot-main .item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.foot-main .item svg { width: 16px; height: 16px; fill: var(--lime); flex: 0 0 16px; }
.foot-legal { border-top: 1px solid rgba(255, 255, 255, 0.15); padding: 18px 0 26px; font-size: 12.5px; color: rgba(255, 255, 255, 0.55); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.foot-legal a { color: rgba(255, 255, 255, 0.75); }
.tagline { text-align: center; color: var(--lime); font-style: italic; padding-bottom: 22px; font-size: 15px; }

/* legal pages */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 20px 80px; }
.legal h1 { font-size: 28px; margin-bottom: 6px; }
.legal .updated { color: rgba(10, 30, 82, 0.55); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 19px; margin: 28px 0 10px; }
.legal p { margin: 10px 0; font-size: 15px; }
.legal .back { display: inline-block; margin-bottom: 24px; font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; }
