:root {
  --brand-blue: #075aa8;
  --brand-blue-dark: #052f67;
  --brand-blue-deep: #041f45;
  --brand-cyan: #10aee4;
  --brand-red: #ed1c24;
  --brand-orange: #ff6a1a;
  --ink: #132238;
  --muted: #627084;
  --soft: #f4f8fc;
  --line: #dbe6f0;
  --white: #ffffff;
  --success: #128c7e;
  --shadow-sm: 0 8px 24px rgba(4, 31, 69, 0.08);
  --shadow-md: 0 18px 48px rgba(4, 31, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: 0;
}

.container {
  max-width: 1200px;
}

.site-header .navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 230, 240, 0.75);
  padding: 12px 0;
  transition: box-shadow 0.25s ease, padding 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(14px);
}

.site-header .navbar.navbar-scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 112px;
  height: auto;
  object-fit: initial;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  color: var(--brand-blue-dark);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-tagline {
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 700;
}

.navbar-nav {
  gap: 2px;
}

.nav-link {
  color: #27364d;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 10px 12px !important;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue);
  background: rgba(7, 90, 168, 0.08);
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(16, 174, 228, 0.18);
}

.btn {
  --bs-btn-border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0;
  min-height: 44px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  --bs-btn-bg: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: var(--brand-blue-dark);
  --bs-btn-hover-border-color: var(--brand-blue-dark);
  --bs-btn-active-bg: var(--brand-blue-dark);
  --bs-btn-active-border-color: var(--brand-blue-dark);
  box-shadow: 0 12px 24px rgba(7, 90, 168, 0.18);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-blue);
  --bs-btn-border-color: rgba(7, 90, 168, 0.35);
  --bs-btn-hover-bg: var(--brand-blue);
  --bs-btn-hover-border-color: var(--brand-blue);
}

.btn-success {
  --bs-btn-bg: var(--success);
  --bs-btn-border-color: var(--success);
  --bs-btn-hover-bg: #0f7569;
  --bs-btn-hover-border-color: #0f7569;
}

.nav-cta {
  min-height: 40px;
  padding-inline: 16px;
  white-space: nowrap;
}

.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 142px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 248, 252, 0.94), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(90deg, rgba(7, 90, 168, 0.055) 0 1px, transparent 1px 84px);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-cyan), var(--brand-blue));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
}

.section-kicker.light-kicker,
.section-heading.light .section-kicker {
  color: #b7ebff;
}

.section-kicker.light-kicker::before,
.section-heading.light .section-kicker::before {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-cyan));
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 76px;
  background:
    linear-gradient(135deg, rgba(244, 248, 252, 0.96), rgba(255, 255, 255, 0.84)),
    repeating-linear-gradient(90deg, rgba(7, 90, 168, 0.055) 0 1px, transparent 1px 84px);
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-cyan), var(--brand-blue));
}

.inner-hero h1 {
  max-width: 900px;
  color: var(--brand-blue-deep);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-lead {
  max-width: 780px;
  color: #48576f;
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  margin-bottom: 0;
}

.page-breadcrumb {
  margin-bottom: 18px;
  font-weight: 700;
}

.page-breadcrumb a {
  color: var(--brand-blue);
}

.page-logo-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.page-logo-panel img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--brand-blue-deep);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
}

.hero-lead {
  max-width: 640px;
  color: #48576f;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-actions .btn {
  min-width: 172px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
}

.hero-metrics div {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 230, 240, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--brand-blue-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 31, 69, 0.1), rgba(4, 31, 69, 0.76)),
    linear-gradient(120deg, rgba(7, 90, 168, 0.1), rgba(16, 174, 228, 0.16));
}

.floating-panel {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  max-width: min(260px, calc(100% - 32px));
  padding: 12px 16px;
  color: var(--white);
  background: rgba(4, 31, 69, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.floating-panel i {
  color: var(--brand-cyan);
  font-size: 1.35rem;
}

.panel-top {
  top: 24px;
  left: 24px;
}

.panel-bottom {
  right: 24px;
  bottom: 86px;
}

.tech-strip {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tech-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.section {
  padding: 96px 0;
}

.bg-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.text-start {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.section-heading h2 {
  color: var(--brand-blue-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  pointer-events: none;
}

.image-frame picture,
.image-frame img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-item {
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.about-item i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 8px;
  font-size: 1.4rem;
}

.about-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.about-item p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.service-block {
  margin-top: 34px;
}

.service-block-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-block-title > span {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  border-radius: 8px;
  font-weight: 900;
}

.service-block-title h2,
.service-block-title h3 {
  color: var(--brand-blue-dark);
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.service-block-title p {
  color: var(--muted);
  margin: 0;
}

.service-card,
.product-card,
.contact-panel,
.contact-form {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(219, 230, 240, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.service-card,
.product-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-orange), var(--brand-red));
}

.service-card:hover,
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 174, 228, 0.42);
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--brand-blue);
  background: rgba(7, 90, 168, 0.08);
  border-radius: 8px;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.service-card h4 {
  min-height: 54px;
  color: var(--brand-blue-deep);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p,
.product-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.service-final-row {
  margin-top: 34px;
}

.accent-card .service-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 900;
  border: 0;
  padding: 0;
  background: transparent;
}

.card-link:hover {
  color: var(--brand-red);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.detail-link {
  color: var(--brand-red);
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border-radius: 8px;
  font-size: 1.55rem;
  margin-bottom: 20px;
}

.product-icon.red {
  background: linear-gradient(135deg, var(--brand-red), #ff5b61);
}

.product-icon.cyan {
  background: linear-gradient(135deg, var(--brand-cyan), #58d3ff);
}

.product-icon.orange {
  background: linear-gradient(135deg, var(--brand-orange), #ffae4e);
}

.product-icon.blue {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
}

.product-card h2,
.product-card h3 {
  color: var(--brand-blue-deep);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 24px;
  color: #46546a;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.product-card li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand-cyan);
  font-family: "bootstrap-icons";
  font-weight: normal;
}

.bg-dark-blue {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 31, 69, 0.97), rgba(5, 47, 103, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px);
}

.bg-dark-blue::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-orange), var(--brand-cyan));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 22px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(20, 174, 226, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 174, 226, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.09));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

.why-grid i {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 174, 226, 0.26);
  font-size: 1.65rem;
}

.why-grid span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-weight: 800;
  line-height: 1.32;
}

.why-grid p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  line-height: 1.58;
  margin: 0;
}

.home-why-section {
  isolation: isolate;
}

.home-why-section::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 38%;
  background:
    linear-gradient(90deg, transparent, rgba(16, 174, 228, 0.08)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 78px);
  pointer-events: none;
  z-index: 0;
}

.home-why-section .container {
  position: relative;
  z-index: 1;
}

.home-why-intro {
  margin-bottom: 0;
}

.home-why-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-why-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-why-badges i {
  color: var(--brand-cyan);
}

.home-why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-why-card {
  min-height: 236px;
  padding: 24px 20px;
}

.home-why-card i {
  width: 56px;
  height: 56px;
  font-size: 1.45rem;
}

.home-why-card span {
  min-height: auto;
  font-size: 1rem;
}

.home-why-card p {
  font-size: 0.9rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-item {
  min-height: 112px;
  padding: 22px;
  text-align: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

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

.proof-item strong {
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.why-action-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.9), rgba(255, 106, 26, 0.88));
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.why-action-panel h2 {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-action-panel p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.why-action-panel .btn {
  flex: 0 0 auto;
}

.process-section {
  background:
    linear-gradient(180deg, var(--white), #f8fbff);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(219, 230, 240, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-orange));
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 174, 228, 0.42);
  box-shadow: var(--shadow-md);
}

.process-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(7, 90, 168, 0.1);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1;
}

.process-card i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 8px;
  font-size: 1.55rem;
}

.process-card h3 {
  position: relative;
  color: var(--brand-blue-deep);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card p {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.faq-section h2 {
  color: var(--brand-blue-deep);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 14px;
}

.faq-section p {
  color: var(--muted);
  margin-bottom: 22px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(219, 230, 240, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  color: var(--brand-blue-deep);
  font-weight: 800;
  line-height: 1.45;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: rgba(7, 90, 168, 0.08);
}

.faq-accordion .accordion-button:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(16, 174, 228, 0.14);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.industry-grid {
  align-items: stretch;
}

.industry-card {
  width: 100%;
  min-height: 148px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  color: var(--brand-blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 28, 36, 0.22);
  box-shadow: var(--shadow-md);
}

.industry-card i {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 8px;
  font-size: 1.55rem;
}

.industry-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-weight: 800;
  line-height: 1.35;
}

.home-industries-section {
  background:
    linear-gradient(180deg, var(--white), #f7fbff);
}

.industry-feature-card {
  position: relative;
  height: 100%;
  min-height: 100%;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(4, 31, 69, 0.98), rgba(7, 90, 168, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 82px);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.industry-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange), var(--brand-cyan));
}

.industry-feature-card .section-kicker,
.industry-feature-card h3,
.industry-feature-card p {
  position: relative;
  z-index: 1;
}

.industry-feature-card .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.industry-feature-card h3 {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 18px 0 14px;
}

.industry-feature-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.industry-detail-card {
  min-height: 232px;
  padding: 24px 20px;
  border-color: rgba(219, 230, 240, 0.96);
}

.industry-detail-card i {
  width: 58px;
  height: 58px;
}

.industry-detail-card span {
  min-height: auto;
  font-size: 1rem;
}

.industry-detail-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-panel,
.contact-form {
  padding: 30px;
}

.contact-logo {
  width: 220px;
  margin-bottom: 18px;
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--brand-blue-deep);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-panel .tagline {
  color: var(--brand-red);
  font-weight: 800;
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #435168;
  font-weight: 600;
}

.contact-list i {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 8px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-label {
  color: var(--brand-blue-deep);
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 50px;
  border-color: #ccdae7;
  border-radius: 8px;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(16, 174, 228, 0.16);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  min-width: 190px;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 12px 0 0;
}

.captcha-wrap {
  display: grid;
  grid-template-columns: auto minmax(118px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--white);
  border: 1px solid #ccdae7;
  border-radius: 8px;
}

.captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 118px;
  padding: 8px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 8px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.captcha-wrap .form-control {
  min-height: 38px;
  border: 0;
  box-shadow: none;
  padding-left: 0;
}

.privacy-consent {
  padding: 14px 16px 14px 42px;
  background: rgba(7, 90, 168, 0.06);
  border: 1px solid rgba(7, 90, 168, 0.12);
  border-radius: 8px;
}

.privacy-consent .form-check-input {
  margin-left: -26px;
}

.privacy-consent .form-check-label {
  color: #435168;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.privacy-consent a {
  color: var(--brand-blue);
  font-weight: 900;
}

.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 24px;
}

.legal-card,
.legal-sidebar {
  background: var(--white);
  border: 1px solid rgba(219, 230, 240, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.legal-card {
  padding: 34px;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 10px 14px;
  color: var(--brand-blue);
  background: rgba(7, 90, 168, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.legal-card h2 {
  color: var(--brand-blue-deep);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 28px 0 10px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #48576f;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-contact-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-contact-box a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #435168;
  font-weight: 700;
}

.legal-contact-box i {
  flex: 0 0 auto;
  color: var(--brand-blue);
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 28px;
}

.legal-sidebar > i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border-radius: 8px;
  font-size: 1.55rem;
}

.legal-sidebar h2 {
  color: var(--brand-blue-deep);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.legal-sidebar p {
  color: var(--muted);
  margin: 0 0 4px;
}

.detail-modal .modal-content {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.detail-modal .modal-header {
  align-items: flex-start;
  border-bottom-color: var(--line);
  padding: 24px 26px;
}

.detail-modal .modal-title {
  color: var(--brand-blue-deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}

.modal-eyebrow {
  display: inline-block;
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.detail-modal .modal-body {
  padding: 24px 26px;
}

.detail-modal .modal-body p {
  color: #46546a;
  font-size: 1rem;
}

.detail-modal .modal-body h3 {
  color: var(--brand-blue-dark);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 22px 0 14px;
}

.modal-benefit-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #46546a;
  font-weight: 700;
}

.modal-benefit-list i {
  color: var(--brand-cyan);
  font-size: 1.15rem;
}

.detail-modal .modal-footer {
  border-top-color: var(--line);
  padding: 18px 26px 24px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--brand-blue-deep);
  padding: 72px 0 24px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 8px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-weight: 800;
}

.site-footer h2 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-text {
  max-width: 370px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 1030;
  display: grid;
  gap: 12px;
}

.float-btn,
.back-to-top {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  border-radius: 8px;
  border: 0;
  box-shadow: 0 16px 30px rgba(4, 31, 69, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.float-btn:hover,
.back-to-top:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.float-btn.call {
  background: var(--brand-blue);
}

.float-btn.whatsapp {
  background: var(--success);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1030;
  background: var(--brand-red);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.28s;
}

@media (max-width: 1199.98px) {
  .site-header .navbar-collapse {
    margin-top: 12px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
  }

  .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual img {
    min-height: 480px;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-action-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) and (max-height: 780px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 34px;
  }

  .hero-metrics {
    display: none;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual img {
    min-height: 500px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header .navbar {
    padding: 8px 0;
  }

  .brand-logo {
    width: 104px;
    height: auto;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-tagline {
    font-size: 0.69rem;
  }

  .hero-section {
    padding: 116px 0 50px;
  }

  .inner-hero {
    padding: 112px 0 50px;
  }

  .inner-hero h1,
  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.14;
    margin-bottom: 14px;
  }

  .page-lead,
  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .page-breadcrumb {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .section-kicker {
    align-items: flex-start;
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .section-kicker::before {
    margin-top: 0.52em;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg {
    --bs-btn-font-size: 0.98rem;
    --bs-btn-padding-y: 0.78rem;
    --bs-btn-padding-x: 1rem;
  }

  .hero-metrics {
    display: none;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual img {
    min-height: 420px;
  }

  .floating-panel {
    position: static;
    z-index: 2;
    width: calc(100% - 32px);
    margin: 0 16px 12px;
  }

  .hero-visual .panel-top {
    margin-top: -146px;
  }

  .hero-visual .panel-bottom {
    margin-top: 0;
  }

  .tech-strip {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px 16px;
    margin-top: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .section-heading p,
  .about-item p,
  .service-card p,
  .product-card p,
  .why-grid p,
  .industry-detail-card p,
  .process-card p,
  .faq-accordion .accordion-body,
  .legal-card p,
  .legal-card li {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .about-item h3,
  .service-card h4,
  .product-card h2,
  .product-card h3,
  .process-card h3,
  .contact-panel h2,
  .contact-panel h3,
  .legal-card h2,
  .legal-sidebar h2 {
    font-size: 1.05rem;
    line-height: 1.32;
  }

  .faq-section h2,
  .cta-content h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .why-action-panel h2,
  .industry-feature-card h3 {
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .image-frame picture,
  .image-frame img {
    min-height: 330px;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .process-card,
  .industry-detail-card {
    min-height: auto;
  }

  .proof-strip,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .why-action-panel {
    padding: 24px;
  }

  .why-action-panel .btn {
    width: 100%;
  }

  .home-why-badges span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .industry-feature-card {
    min-height: auto;
    padding: 24px;
  }

  .industry-feature-card .btn {
    width: 100%;
  }

  .service-block-title {
    flex-direction: column;
  }

  .service-card h4 {
    min-height: auto;
  }

  .cta-section {
    padding: 58px 0;
  }

  .cta-actions .btn,
  .contact-actions .btn,
  .submit-btn {
    width: 100%;
  }

  .captcha-wrap {
    grid-template-columns: 1fr;
  }

  .captcha-wrap .form-control {
    padding-left: 12px;
  }

  .legal-card,
  .legal-sidebar {
    padding: 24px;
  }

  .legal-sidebar {
    position: static;
  }

  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions {
    right: 12px;
    bottom: 78px;
  }

  .float-btn,
  .back-to-top {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-text {
    max-width: 182px;
  }

  .brand-name,
  .brand-tagline {
    overflow-wrap: anywhere;
  }

  .inner-hero h1,
  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .page-lead,
  .hero-lead {
    font-size: 0.94rem;
  }

  .section-heading h2,
  .faq-section h2,
  .cta-content h2 {
    font-size: 27px;
  }

  .section-kicker {
    font-size: 0.66rem;
  }

  .home-why-badges span {
    flex-basis: 100%;
  }

  .service-card,
  .product-card,
  .why-card,
  .industry-card,
  .process-card,
  .contact-panel,
  .contact-form,
  .legal-card,
  .legal-sidebar {
    padding: 20px;
  }

  .hero-visual,
  .hero-visual picture,
  .hero-visual img {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
