:root {
  --blue-dark: #0b3d5c;
  --blue: #1470a8;
  --blue-light: #eaf4fb;
  --orange: #e8712a;
  --orange-dark: #cc5c18;
  --text: #1f2a33;
  --text-light: #5a6a75;
  --white: #ffffff;
  --border: #dfe8ee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, .logo-text, .nav-cta, .btn {
  font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.25; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-text {
  display: block;
  font-weight: 700;
  font-size: 19px;
  color: var(--blue-dark);
}

.logo-sub {
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
}

.nav a { color: var(--text); }
.nav a:hover { color: var(--blue); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--orange-dark); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 80px 0;
}

.hero-inner { text-align: center; max-width: 720px; margin: 0 auto; }

.hero h1 { font-size: 40px; margin-bottom: 18px; }

.hero p {
  font-size: 18px;
  color: #d9ecf8;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
}

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.22); }

.btn-large { font-size: 18px; padding: 16px 32px; }

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #cfe6f5;
}

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--blue-light); }

.section h2 {
  font-size: 30px;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.section-lead {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 640px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 10px 24px rgba(11,61,92,0.08);
  transform: translateY(-2px);
}

.card-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card h3 { font-size: 18px; margin-bottom: 8px; color: var(--blue-dark); }

.card p { color: var(--text-light); font-size: 15px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p { margin-bottom: 16px; color: var(--text); }

.values {
  list-style: none;
  margin-top: 20px;
}

.values li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--border);
  position: relative;
}

.values li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.about-figure {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.figure-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
}

.figure-number {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
}

.figure-label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-row {
  padding-left: 14px;
  border-left: 2px solid var(--orange);
}

.info-row strong { display: block; color: var(--blue-dark); margin-bottom: 2px; }
.info-row p { color: var(--text-light); }
.info-row a:hover { color: var(--blue); text-decoration: underline; }

.map-placeholder {
  background: var(--blue-light);
  border: 1px dashed var(--blue);
  border-radius: 10px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  text-align: center;
}

.map-placeholder p { font-weight: 600; }

/* CTA */
.section-cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
}

.section-cta h2 { color: var(--white); }

.cta-inner p { margin: 12px 0 26px; color: #fff0e6; }

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: #b9d3e3;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 800px) {
  .nav { gap: 14px; font-size: 14px; }
  .hero h1 { font-size: 30px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .nav { flex-wrap: wrap; justify-content: center; }
}
