:root {
  --bg: #ffffff;
  --bg-soft: #f7f7fb;
  --text: #161616;
  --muted: #646b78;
  --line: #e8eaf0;
  --primary: #112e5c;
  --accent: #b3873f;
  --shadow: 0 18px 50px rgba(17, 46, 92, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #0f172a; color: #fff; font-size: 0.92rem; }
.topbar-content { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; padding: 12px 0; }
.navbar { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--line); }
.nav-content { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), #20498c);
  color: #fff; display: grid; place-items: center; font-weight: 700; letter-spacing: 0.06em; box-shadow: var(--shadow);
}
.brand h1, .hero h2, .section h2, .service-card h3, .footer h3 { font-family: Georgia, 'Times New Roman', serif; }
.brand h1 { font-size: 1.15rem; line-height: 1.1; }
.brand p { color: var(--muted); font-size: 0.95rem; }
.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a { font-weight: 600; color: #293241; }
.menu-toggle { display: none; background: transparent; border: none; font-size: 1.7rem; cursor: pointer; }
.hero {
  overflow: hidden; padding: 72px 0 56px;
  background: radial-gradient(circle at top left, rgba(179,135,63,0.10), transparent 30%), radial-gradient(circle at right center, rgba(17,46,92,0.08), transparent 25%), #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 32px; align-items: center; }
.eyebrow, .section-tag {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(179,135,63,0.25); background: rgba(179,135,63,0.08);
  color: var(--accent); padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; margin-bottom: 18px;
}
.section-tag.light { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); color: #fff; }
.hero h2, .section h2 { font-size: clamp(2.1rem, 4vw, 4.1rem); line-height: 1.05; margin-bottom: 10px; }
.hero h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 20px; }
.hero p { font-size: 1.08rem; color: #384152; max-width: 700px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 14px;
  font-weight: 700; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #1b4a8a); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; border: 1px solid var(--line); color: var(--text); }
.btn-light { background: #fff; color: var(--primary); }
.hero-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.highlight-card, .content-card, .service-card, .contact-card, .panel-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.highlight-card { padding: 18px 20px; }
.highlight-card strong, .contact-item strong { display: block; font-size: 1.05rem; }
.highlight-card span, .contact-item span, .service-card p, .brand p { color: var(--muted); }
.hero-panel { display: flex; justify-content: center; }
.panel-box { width: 100%; max-width: 400px; padding: 28px; position: relative; }
.panel-box::before { content: ""; position: absolute; inset: 14px; border-radius: 20px; border: 1px dashed rgba(17,46,92,0.14); pointer-events: none; }
.panel-label { display: inline-block; font-weight: 700; color: var(--primary); margin-bottom: 18px; }
.panel-box ul { list-style: none; display: grid; gap: 12px; }
.panel-box li { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font-weight: 600; }
.section { padding: 84px 0; }
.section-soft { background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%); }
.section-grid, .contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.content-card { padding: 30px; }
.content-card p + p { margin-top: 14px; }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.section-heading.center p { max-width: 650px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card { padding: 28px; min-height: 180px; background: linear-gradient(180deg, #fff 0%, #fcfcff 100%); }
.service-card h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
.cta-band { background: linear-gradient(135deg, #0f244a 0%, #1e4b86 100%); color: #fff; }
.cta-band-content { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.contact-card { padding: 30px; display: grid; gap: 16px; }
.contact-item { padding: 14px 0; border-bottom: 1px solid var(--line); word-break: break-word; }
.contact-item:last-child { border-bottom: none; }
.footer { background: #0b1220; color: #fff; padding: 32px 0; }
.footer-content { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { color: rgba(255,255,255,0.78); }
.floating-call {
  position: fixed; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #d4aa61); color: #fff; font-size: 1.4rem; box-shadow: 0 18px 40px rgba(179,135,63,0.34); z-index: 30;
}
@media (max-width: 960px) {
  .hero-grid, .section-grid, .contact-layout, .cta-band-content { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links {
    position: absolute; top: 82px; right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow); padding: 18px; min-width: 220px; flex-direction: column; display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
@media (max-width: 640px) {
  .hero { padding-top: 56px; }
  .hero-highlights, .cards-grid { grid-template-columns: 1fr; }
  .brand h1 { font-size: 1rem; }
  .btn { width: 100%; }
}
