:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --text: #13233a;
  --muted: #5d6b82;
  --primary: #1d6fd8;
  --primary-dark: #0f4fa5;
  --accent: #19a7a0;
  --dark: #0f1724;
  --border: #dbe4ee;
  --shadow: 0 16px 40px rgba(10, 28, 52, 0.08);
  --radius: 22px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img { max-width: 100%; }
a { text-decoration: none; }

.site-navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 228, 238, 0.9);
}

.brand-logo {
  height: 72px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-brand {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(29, 111, 216, 0.25);
}

.btn-brand:hover { color: #fff; opacity: 0.95; }

.btn-outline-brand {
  border: 1px solid rgba(19, 35, 58, 0.18);
  color: var(--text);
  background: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
}

.hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(25,167,160,0.14), transparent 24%),
    radial-gradient(circle at left center, rgba(29,111,216,0.14), transparent 28%),
    linear-gradient(180deg, #f9fbfe 0%, #f4f7fb 100%);
}

.hero-panel,
.mock-card,
.info-card,
.contact-card,
.gallery-card,
.metric-card,
.step-card,
.service-card,
.testimonial-card,
.faq-card,
.highlight-card,
.form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge,
.section-eyebrow {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(29,111,216,0.10);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-visual {
  min-height: 380px;
  display: flex;
  align-items: stretch;
}

.hero-visual .hero-panel {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #14213d, #182942 55%, #0e1828);
  color: #fff;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.page-hero {
  padding: 4.75rem 0 3rem;
}

.page-hero .hero-panel,
.dark-panel {
  background: linear-gradient(135deg, #0f1724, #18263b);
  color: #fff;
}

.page-hero .hero-panel p,
.dark-panel p,
.dark-panel .section-intro,
.dark-panel .muted-light {
  color: rgba(255,255,255,0.76);
}

.section-block { padding: 4.5rem 0; }
.section-block.compact { padding: 3.5rem 0; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.service-card,
.info-card,
.metric-card,
.step-card,
.testimonial-card,
.faq-card,
.contact-card,
.highlight-card,
.gallery-card { height: 100%; padding: 1.6rem; }

.service-icon,
.info-icon,
.metric-icon,
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(29,111,216,0.12), rgba(25,167,160,0.16));
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.service-card h3,
.info-card h3,
.metric-card h3,
.gallery-card h3,
.highlight-card h3,
.contact-card h3,
.form-shell h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card p,
.info-card p,
.metric-card p,
.step-card p,
.gallery-card p,
.highlight-card p,
.contact-card p,
.testimonial-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.service-card:hover,
.info-card:hover,
.metric-card:hover,
.gallery-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 48px rgba(10, 28, 52, 0.12);
}

.media-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.feature-list,
.check-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.check-list li,
.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(219, 228, 238, 0.7);
  color: var(--muted);
}

.feature-list li:last-child,
.check-list li:last-child,
.contact-list li:last-child { border-bottom: 0; }

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  margin-right: 0.7rem;
}

.cta-band {
  padding: 2.3rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #10203b, #18406b 62%, #1b7771);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 0; }

.footer-shell {
  background: #0f1724;
  color: rgba(255,255,255,0.8);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-shell a { color: #fff; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(29,111,216,0.5);
  box-shadow: 0 0 0 0.2rem rgba(29,111,216,0.12);
}

.quote-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link { padding: 0.5rem 0; }
  .hero, .page-hero { padding-top: 3.5rem; }
  .hero-visual img { min-height: 300px; }
}
