:root {
  --bs-body-font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --site-bg: #0d0f12;
  --site-panel: #14181d;
  --site-panel-alt: #1a1f25;
  --site-text: #f5f7fa;
  --site-muted: #b3bcc7;
  --site-border: rgba(255, 255, 255, 0.09);
  --site-orange: #f47a20;
  --site-orange-dark: #d86310;
  --site-white: #ffffff;
  --site-black: #060708;
  --site-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--site-bg);
  color: var(--site-text);
  font-family: var(--bs-body-font-family);
  padding-bottom: 76px;
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(8, 10, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  padding: 0.95rem 0;
}

.navbar-brand {
  color: var(--site-white);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--site-orange), var(--site-orange-dark));
  color: var(--site-white);
  font-size: 1.35rem;
  box-shadow: var(--site-shadow);
}

.brand-title, .brand-subtitle {
  display: block;
  line-height: 1.1;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--site-muted);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.nav-link:hover, .nav-link:focus {
  color: var(--site-orange);
}

.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(244, 122, 32, 0.2), transparent 28%), linear-gradient(180deg, #0c0f13 0%, #11161c 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 90%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--site-orange);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--site-white);
  font-weight: 700;
  max-width: 42rem;
  margin-bottom: 1rem;
}

.hero-text, .section-heading p, .coverage-panel p, .contact-panel p, .contact-strip p, .service-card p, .feature-card p {
  color: var(--site-muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 46rem;
  margin-bottom: 1.8rem;
}

.btn {
  border-radius: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.4rem;
  border-width: 1px;
}

.btn-accent {
  background: var(--site-orange);
  border-color: var(--site-orange);
  color: var(--site-white);
}

.btn-accent:hover, .btn-accent:focus {
  background: var(--site-orange-dark);
  border-color: var(--site-orange-dark);
  color: var(--site-white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--site-white);
  color: var(--site-black);
}

.btn-dark-strong {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--site-white);
}

.btn-dark-strong:hover, .btn-dark-strong:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--site-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 42rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--site-border);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: var(--site-white);
  font-weight: 600;
}

.trust-item i {
  color: var(--site-orange);
}

.hero-panel, .coverage-panel, .contact-panel, .contact-strip, .service-card, .feature-card {
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-radius: 1.4rem;
  padding: 1.4rem;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-icon-card {
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 138px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
}

.hero-icon-card i {
  font-size: 2rem;
  color: var(--site-orange);
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background: radial-gradient(circle at top right, rgba(244, 122, 32, 0.18), transparent 30%), linear-gradient(180deg, #0c0f13 0%, #11161c 100%);
}

.page-title {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.page-lead {
  color: var(--site-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 52rem;
  margin-bottom: 0;
}

.page-lead-narrow {
  max-width: 44rem;
}

.info-panel, .content-card, .service-detail-card {
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
  border-radius: 1.3rem;
}

.info-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 1.2rem;
  height: 100%;
}

.info-panel-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 0;
  color: var(--site-white);
  font-weight: 600;
}

.info-panel-item + .info-panel-item {
  border-top: 1px solid var(--site-border);
}

.info-panel-item i, .check-list i, .service-badge-list i, .contact-method-icon i {
  color: var(--site-orange);
}

.content-card {
  padding: 2rem;
}

.content-card-light {
  background: #ffffff;
  color: #11161c;
  border-color: rgba(17, 22, 28, 0.08);
  box-shadow: 0 18px 40px rgba(8, 10, 12, 0.08);
}

.content-card-light h2, .content-card-light h3, .content-card-light p {
  color: #11161c;
}

.content-card-light p {
  opacity: 0.78;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list div, .service-badge-list span {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.service-detail-card h2 {
  margin-bottom: 0.9rem;
}

.service-badge-list {
  display: grid;
  gap: 0.8rem;
}

.service-badge-list span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--site-border);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--site-white);
}

.contact-method-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--site-border);
  color: var(--site-white);
}

.contact-method-item strong, .contact-method-item span {
  display: block;
}

.contact-method-item span {
  color: var(--site-muted);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 122, 32, 0.12);
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .page-hero {
    padding: 4rem 0 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .service-detail-card, .content-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .page-title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .service-badge-list span {
    border-radius: 1rem;
  }
}

.hero-panel-footer {
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  padding: 1.2rem;
}

.hero-panel-footer h2, .section-heading h2, .coverage-panel h2, .contact-strip h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.hero-panel-footer h2 {
  font-size: 1.55rem;
}

.section-dark, .section-light, .section-grid-accent, .section-contact {
  padding: 5rem 0;
}

.section-dark {
  background: #0a0c0f;
}

.section-light {
  background: #f4f6f8;
  color: #11161b;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2.5rem;
}

.section-heading-dark p, .section-light .feature-card p {
  color: #4d5967;
}

.service-card {
  height: 100%;
  background: linear-gradient(180deg, #14181d 0%, #101418 100%);
  border-radius: 1.15rem;
  padding: 1.5rem;
}

.service-icon, .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.service-icon {
  background: rgba(244, 122, 32, 0.12);
  color: var(--site-orange);
  border: 1px solid rgba(244, 122, 32, 0.22);
}

.feature-card {
  height: 100%;
  background: var(--site-white);
  border-radius: 1.15rem;
  padding: 1.5rem;
  border-color: rgba(17, 22, 27, 0.08);
  box-shadow: 0 14px 36px rgba(17, 22, 27, 0.08);
}

.feature-icon {
  background: #11161b;
  color: var(--site-orange);
}

.service-card h3, .feature-card h3, .contact-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--site-orange);
  font-weight: 700;
  margin-top: 0.5rem;
}

.service-link:hover, .service-link:focus {
  color: #ff9b52;
}

.section-grid-accent {
  background: linear-gradient(180deg, #13181e 0%, #0d1116 100%);
}

.coverage-panel, .contact-panel, .contact-strip {
  border-radius: 1.3rem;
  padding: 2rem;
}

.coverage-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03));
  height: 100%;
}

.coverage-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.coverage-list div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--site-white);
  font-weight: 600;
}

.coverage-list i, .contact-panel-header i {
  color: var(--site-orange);
}

.contact-panel {
  background: linear-gradient(180deg, rgba(244, 122, 32, 0.14), rgba(255, 255, 255, 0.03));
  height: 100%;
}

.contact-panel-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-panel-header i {
  font-size: 1.8rem;
}

.section-contact {
  background: #090b0d;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #151a20 0%, #0f1318 100%);
}

.contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(8, 10, 12, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 76px;
  color: var(--site-white);
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-action-bar a i {
  color: var(--site-orange);
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 991.98px) {
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991.98px) {
  .contact-strip-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .hero-section, .section-dark, .section-light, .section-grid-accent, .section-contact {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-panel-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .mobile-action-bar {
    display: grid;
  }
}

