:root {
  --blucon-navy: #102a5c;
  --blucon-navy-deep: #0a1f47;
  --blucon-orange: #ff6a00;
  --blucon-orange-soft: #ff8d36;
  --blucon-text: #162235;
  --blucon-muted: #5f6f86;
  --blucon-line: #e7edf5;
  --blucon-bg: #f5f8fc;
  --blucon-white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 50px rgba(16, 42, 92, 0.08);
  --shadow-soft: 0 10px 25px rgba(16, 42, 92, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--blucon-text);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, 100%); }
.center-text { text-align: center; }
.section { padding: 88px 0; }
.pt-0 { padding-top: 0; }
.section-soft { background: var(--blucon-bg); }
.eyebrow {
  display: inline-block;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blucon-orange);
  margin-bottom: 14px;
}
h1, h2, h3, h4 {
  margin: 0 0 14px;
  line-height: 1.08;
  color: var(--blucon-navy-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.75rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; }
p { margin: 0 0 16px; color: var(--blucon-muted); }
.lead { font-size: 1.12rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 14px; font-weight: 700;
  transition: .25s ease; border: 1px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blucon-orange); color: white; box-shadow: var(--shadow-soft); }
.button-secondary { background: white; color: var(--blucon-navy-deep); border-color: var(--blucon-line); }
.text-link { color: var(--blucon-navy); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,237,245,.9);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px;
  align-items: center; min-height: 90px;
}
.custom-logo, .default-logo { max-height: 70px; width: auto; }
.site-nav { justify-self: center; }
.menu, .footer-menu {
  list-style: none; display: flex; gap: 28px; padding: 0; margin: 0;
}
.menu a, .footer-menu a { color: var(--blucon-text); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-weight: 700; color: var(--blucon-navy); }
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--blucon-line);
  border-radius: 14px; background: white; padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--blucon-navy); margin: 5px auto; }

.hero-section {
  padding: 48px 0 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { padding: 24px 0; }
.hero-copy h1 { max-width: 12ch; }
.hero-copy p { max-width: 60ch; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 16px; margin: 30px 0 24px; flex-wrap: wrap; }
.hero-badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0;
}
.hero-badges li {
  padding: 10px 16px; background: white; border: 1px solid var(--blucon-line);
  color: var(--blucon-navy); border-radius: 999px; font-weight: 700; box-shadow: var(--shadow-soft);
}
.hero-media {
  position: relative; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--blucon-navy), #27457d);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / .88; }

.stats-section { padding: 0 0 28px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat-card {
  background: white; border: 1px solid var(--blucon-line); border-radius: 22px; padding: 28px;
  box-shadow: var(--shadow-soft);
}
.stat-card strong { display: block; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--blucon-navy-deep); margin-bottom: 6px; }
.stat-card span { color: var(--blucon-muted); font-weight: 600; }

.section-head, .split-head {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card {
  overflow: hidden; border-radius: 24px; background: white; box-shadow: var(--shadow-soft);
  border: 1px solid var(--blucon-line);
}
.service-card-large { grid-column: span 2; }
.service-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-body { padding: 24px; }
.service-body h3, .service-body h2 { margin-bottom: 10px; }

.cta-band {
  background: linear-gradient(135deg, var(--blucon-navy-deep), var(--blucon-navy));
  color: white; padding: 40px; border-radius: 30px; display: flex; justify-content: space-between;
  align-items: center; gap: 28px; box-shadow: var(--shadow);
}
.cta-band h2, .cta-band p { color: white; }

.contact-grid, .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.section-gap { gap: 46px; }
.contact-form, .content-card, .pricing-card {
  background: white; border: 1px solid var(--blucon-line); border-radius: 28px;
  box-shadow: var(--shadow-soft); padding: 30px;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.contact-form label { display: block; }
.contact-form span { display: block; margin-bottom: 8px; font-weight: 700; color: var(--blucon-navy); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; border: 1px solid var(--blucon-line); border-radius: 14px; padding: 14px 16px;
  font: inherit; color: var(--blucon-text); background: white;
}
.form-alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; font-weight: 600; }
.form-alert.success { background: #ecfff1; color: #126b3f; }
.form-alert.error { background: #fff1f0; color: #a0322a; }

.feature-list {
  display: grid; gap: 16px; margin-top: 28px;
}
.feature-list.compact div, .feature-list div {
  padding: 18px 20px; background: white; border: 1px solid var(--blucon-line); border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.feature-list strong { display: block; color: var(--blucon-navy-deep); margin-bottom: 4px; }
.featured-image { margin-bottom: 24px; overflow: hidden; border-radius: 22px; }
.featured-image img { width: 100%; height: auto; }
.entry-content > * + * { margin-top: 1em; }
.entry-content ul, .entry-content ol { padding-left: 20px; }
.post-card + .post-card { margin-top: 24px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.pricing-card.featured {
  border-color: rgba(255,106,0,.25); box-shadow: 0 18px 45px rgba(255,106,0,.12);
}

.site-footer {
  background: var(--blucon-navy-deep); color: rgba(255,255,255,.78); padding: 72px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px;
}
.site-footer .custom-logo, .site-footer .default-logo { filter: brightness(1.05); margin-bottom: 18px; }
.footer-title { color: white; font-size: 1.05rem; margin-bottom: 14px; }
.footer-menu { flex-direction: column; gap: 10px; }
.footer-menu li, .footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,.78); display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 22px; }
.footer-bottom p { color: rgba(255,255,255,.65); margin: 0; }

@media (max-width: 1100px) {
  .hero-grid, .contact-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { grid-column: span 1; }
  .pricing-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .site-nav {
    display: none; grid-column: 1 / -1; justify-self: stretch; background: white;
    border: 1px solid var(--blucon-line); border-radius: 22px; padding: 18px;
  }
  .site-nav.is-open { display: block; }
  .menu { flex-direction: column; gap: 14px; }
  .header-cta { display: none; }
  .hero-section { padding-top: 28px; }
  .hero-copy h1 { max-width: none; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .container { width: min(100% - 24px, 1200px); }
  .hero-grid, .services-grid, .pricing-grid, .stats-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .split-head { align-items: flex-start; flex-direction: column; }
  .contact-form, .content-card, .pricing-card, .cta-band { padding: 22px; }
}
