:root {
  --iss-bg: #F6F8FB;
  --iss-bg-alt: #EEF3F8;
  --iss-card: #FFFFFF;
  --iss-dark: #14263F;
  --iss-blue: #23476B;
  --iss-text: #243447;
  --iss-muted: #5E6B7A;
  --iss-accent: #C58A2A;
  --iss-border: #D9E1EA;
  --iss-shadow: 0 22px 65px rgba(20, 38, 63, 0.11);
  --iss-soft-shadow: 0 12px 35px rgba(20, 38, 63, 0.08);
  --iss-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: auto;
}

.home-page {
  color: var(--iss-text);
  background: var(--iss-bg);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-page img {
  max-width: 100%;
}

.home-page a {
  color: inherit;
}

.home-page a:focus,
.home-page button:focus {
  outline: 3px solid rgba(197, 138, 42, 0.35);
  outline-offset: 3px;
}

.home-page .container {
  max-width: 1180px;
}

.home-page .premium-hero {
  min-height: auto;
  background: var(--iss-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

/* Hero content text — white on dark blue background */
.home-page .hero_content h1 {
  color: #ffffff;
}

.home-page .hero_section .hero_lead {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .hero_section .hero_points span {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .hero_section .hero_assurance strong {
  color: #ffffff;
}

.home-page .hero_section .hero_assurance span {
  color: rgba(255, 255, 255, 0.72);
}

/* Buttons inverted for dark background */
/* Primary: was dark bg + white text → white bg + dark text */
.home-page .hero_actions .premium_btn_primary {
  color: var(--iss-dark) !important;
  background: #ffffff !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.home-page .hero_actions .premium_btn_primary:hover {
  color: var(--iss-dark) !important;
  background: rgba(255, 255, 255, 0.90) !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

/* Secondary: was white bg + dark border → transparent with white border */
.home-page .hero_actions .premium_btn_secondary {
  color: #ffffff !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
}

.home-page .hero_actions .premium_btn_secondary:hover {
  color: var(--iss-dark) !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.home-page .header_section {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #F6F8FB;
  border-bottom: 1px solid #D9E1EA;
}

.home-page .header_section .container-fluid {
  max-width: 1240px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.home-page .navbar-brand span {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.home-page .custom_nav-container .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 8px 14px;
  color: var(--iss-blue);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: none;
}

.home-page .custom_nav-container .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 2px;
  left: 14px;
  height: 2px;
  background: var(--iss-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-page .custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.home-page .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--iss-dark);
}

.home-page .custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.home-page .custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link {
  margin-left: 8px;
  padding: 9px 17px;
  color: #ffffff !important;
  background: var(--iss-dark) !important;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(20, 38, 63, 0.14);
}

.home-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link::after {
  display: none;
}

.home-page .custom_nav-container .navbar-nav .nav-item.nav-cta:hover .nav-link {
  color: #ffffff !important;
  background: var(--iss-blue) !important;
}

.home-page .custom_nav-container .navbar-toggler span,
.home-page .custom_nav-container .navbar-toggler span::before,
.home-page .custom_nav-container .navbar-toggler span::after {
  background-color: var(--iss-dark);
}

.hero_section {
  padding: 86px 0 76px;
}

.hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: 64px;
  align-items: center;
}

.section_kicker {
  margin: 0 0 14px;
  color: var(--iss-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero_content h1 {
  max-width: 710px;
  margin: 0;
  font-size: 4.35rem;
  font-weight: 800;
  line-height: 0.99;
}

.hero_lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--iss-muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero_actions,
.section_actions,
.final_cta_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero_actions {
  margin-top: 32px;
}

.premium_btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 220ms var(--iss-ease), box-shadow 220ms var(--iss-ease), background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.premium_btn:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-2px);
}

.premium_btn_primary,
.home-page .premium_btn_primary,
.sub-page .premium_btn_primary {
  color: #ffffff !important;
  background: var(--iss-dark) !important;
  box-shadow: 0 14px 28px rgba(20, 38, 63, 0.18);
}

.premium_btn_primary:hover,
.home-page .premium_btn_primary:hover,
.sub-page .premium_btn_primary:hover {
  color: #ffffff !important;
  background: var(--iss-blue) !important;
  box-shadow: 0 18px 36px rgba(20, 38, 63, 0.22);
}

.premium_btn_secondary,
.home-page .premium_btn_secondary,
.sub-page .premium_btn_secondary {
  color: var(--iss-dark) !important;
  background: #ffffff !important;
  border-color: var(--iss-border);
}

.premium_btn_secondary:hover,
.home-page .premium_btn_secondary:hover,
.sub-page .premium_btn_secondary:hover {
  color: var(--iss-dark) !important;
  border-color: rgba(197, 138, 42, 0.55);
  box-shadow: var(--iss-soft-shadow);
}

.premium_btn_accent,
.home-page .premium_btn_accent,
.sub-page .premium_btn_accent {
  color: #ffffff !important;
  background: var(--iss-accent) !important;
  box-shadow: 0 16px 32px rgba(197, 138, 42, 0.26);
}

.premium_btn_accent:hover,
.home-page .premium_btn_accent:hover,
.sub-page .premium_btn_accent:hover {
  color: #ffffff !important;
  background: #A96F18 !important;
}

.premium_btn_light,
.home-page .premium_btn_light,
.sub-page .premium_btn_light {
  color: #ffffff !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.34);
}

.premium_btn_light:hover,
.home-page .premium_btn_light:hover,
.sub-page .premium_btn_light:hover {
  color: var(--iss-dark) !important;
  background: #ffffff !important;
}

.hero_points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero_points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--iss-blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--iss-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.hero_assurance {
  display: grid;
  gap: 4px;
  max-width: 580px;
  margin-top: 28px;
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--iss-accent);
}

.hero_assurance strong,
.hero_assurance span {
  display: block;
}

.hero_assurance strong {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero_assurance span {
  color: var(--iss-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero_visual {
  position: relative;
  min-height: 590px;
  overflow: visible;
  isolation: isolate;
}

.hero_visual::before {
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  background: rgba(238, 243, 248, 0.74);
  border: 1px solid var(--iss-border);
  border-radius: 8px;
  content: "";
}

.hero_visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 38, 63, 0.02), rgba(20, 38, 63, 0.34));
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.hero_main_image {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.96) contrast(1.04);
  border: 1px solid var(--iss-border);
  border-radius: 8px;
  box-shadow: var(--iss-shadow);
}

.hero_inset {
  position: absolute;
  right: -26px;
  bottom: 108px;
  z-index: 3;
  width: min(305px, 48%);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 225, 234, 0.94);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(20, 38, 63, 0.22);
}

.hero_inset img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.94) contrast(1.06);
}

.hero_status,
.hero_metric {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 225, 234, 0.9);
  box-shadow: 0 15px 35px rgba(20, 38, 63, 0.14);
  backdrop-filter: blur(12px);
}

.hero_status {
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--iss-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.status_dot {
  width: 9px;
  height: 9px;
  background: #22C55E;
  border-radius: 50%;
  animation: statusPulse 2.8s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
}

.hero_metric {
  bottom: 22px;
  left: 22px;
  width: min(318px, calc(100% - 44px));
  padding: 20px;
  border-radius: 8px;
}

.hero_metric strong {
  display: block;
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero_metric span {
  display: block;
  margin-top: 7px;
  color: var(--iss-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.home_section {
  padding: 98px 0;
}

.home_section_alt {
  background: var(--iss-bg-alt);
}

.section_header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section_header_center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section_header h2,
.position_content h2,
.monitoring_content h2,
.final_cta h2 {
  margin: 0;
  font-size: 2.72rem;
  font-weight: 800;
  line-height: 1.04;
}

.section_header p:not(.section_kicker),
.position_content p,
.monitoring_content p,
.final_cta p {
  margin: 18px 0 0;
  color: var(--iss-muted);
  font-size: 1.04rem;
}

.story_shell {
  position: relative;
  overflow: hidden;
  background: var(--iss-card);
  border: 1px solid var(--iss-border);
  border-radius: 10px;
  box-shadow: var(--iss-shadow);
}

.story_stage {
  position: relative;
  min-height: 558px;
  touch-action: pan-y;
}

.story_slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 0;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.992);
  transition: opacity 440ms var(--iss-ease), transform 440ms var(--iss-ease), visibility 440ms var(--iss-ease);
  visibility: hidden;
}

.story_shell[data-direction="prev"] .story_slide {
  transform: translateX(-18px) scale(0.992);
}

.story_slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  visibility: visible;
}

.story_media {
  position: relative;
  min-height: 558px;
  overflow: hidden;
  background: var(--iss-bg-alt);
}

.story_media img {
  width: 100%;
  height: 100%;
  min-height: 558px;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.025);
  transition: transform 760ms var(--iss-ease), filter 440ms ease;
}

.story_slide.is-active .story_media img {
  transform: scale(1);
}

.story_media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 38, 63, 0.02), rgba(20, 38, 63, 0.2));
  content: "";
  pointer-events: none;
}

.story_media_clients img {
  object-position: 46% center;
}

.story_media_badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 225, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(20, 38, 63, 0.18);
  backdrop-filter: blur(12px);
}

.story_media_badge strong,
.story_media_badge span {
  display: block;
}

.story_media_badge strong {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.story_media_badge span {
  margin-top: 5px;
  color: var(--iss-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.story_copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 56px;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.55), rgba(255, 255, 255, 0)),
    #ffffff;
}

.story_number {
  color: var(--iss-accent);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.story_copy h3 {
  margin: 18px 0 0;
  font-size: 2.42rem;
  font-weight: 800;
}

.story_copy p {
  margin: 18px 0 0;
  color: var(--iss-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.story_copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.story_copy li {
  position: relative;
  padding-left: 24px;
  color: var(--iss-text);
  font-weight: 700;
  line-height: 1.45;
}

.trust_panel {
  margin-top: 26px;
  padding: 20px;
  background: var(--iss-bg);
  border: 1px solid var(--iss-border);
  border-left: 3px solid var(--iss-accent);
  border-radius: 8px;
}

.trust_panel strong,
.trust_panel span {
  display: block;
}

.trust_panel strong {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust_panel span {
  margin-top: 8px;
  color: var(--iss-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.story_copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--iss-accent);
  border-radius: 50%;
  content: "";
}

.client_names {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.client_names span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 13px 15px;
  color: var(--iss-dark);
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 8px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 38, 63, 0.05);
}

.client_names span::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--iss-accent);
  border-radius: 50%;
  content: "";
}

.story_controls {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.story_arrow {
  position: relative;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--iss-border);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(20, 38, 63, 0.12);
  cursor: pointer;
  transition: transform 180ms var(--iss-ease), background-color 180ms ease, border-color 180ms ease;
}

.story_arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--iss-dark);
  border-right: 2px solid var(--iss-dark);
  content: "";
}

.story_arrow_prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.story_arrow_next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.story_arrow:hover {
  background: var(--iss-dark);
  border-color: var(--iss-dark);
  transform: translateY(-2px);
}

.story_arrow:hover::before {
  border-color: #ffffff;
}

.story_tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
  border-top: 1px solid var(--iss-border);
  scrollbar-width: none;
}

.story_tabs::-webkit-scrollbar {
  display: none;
}

.story_tab {
  position: relative;
  min-height: 72px;
  padding: 14px 16px;
  color: var(--iss-muted);
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--iss-border);
  cursor: pointer;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
  transition: background-color 220ms ease, color 220ms ease;
  scroll-snap-align: start;
}

.story_tab::after {
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  height: 2px;
  background: var(--iss-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--iss-ease);
}

.story_tab:last-child {
  border-right: 0;
}

.story_tab span:not(.story_tab_index) {
  display: block;
}

.story_tab_index {
  display: block;
  margin-bottom: 4px;
  color: var(--iss-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.story_tab:hover,
.story_tab.is-active {
  color: var(--iss-dark);
  background: var(--iss-bg);
}

.story_tab.is-active {
  box-shadow: inset 0 4px 0 var(--iss-accent);
}

.story_tab.is-active::after {
  transform: scaleX(1);
}

.position_grid,
.monitoring_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 64px;
  align-items: center;
}

.position_media,
.monitoring_media {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 10px;
  box-shadow: var(--iss-soft-shadow);
}

.position_media img,
.monitoring_media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.position_media img {
  object-position: 48% center;
}

.monitoring_media img {
  object-position: 62% center;
}

.position_content,
.monitoring_content {
  max-width: 560px;
}

.proof_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.proof_grid div {
  min-height: 128px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 10px;
}

.proof_grid strong,
.proof_grid span {
  display: block;
}

.proof_grid strong {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
}

.proof_grid span {
  margin-top: 8px;
  color: var(--iss-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof_grid + .premium_btn {
  margin-top: 32px;
}

.text_link,
.home-page .text_link,
.sub-page .text_link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--iss-dark) !important;
  font-weight: 800;
}

.text_link::after,
.home-page .text_link::after,
.sub-page .text_link::after {
  width: 34px;
  height: 2px;
  margin-left: 12px;
  background: var(--iss-accent);
  content: "";
  transition: transform 180ms ease;
}

.text_link:hover,
.home-page .text_link:hover,
.sub-page .text_link:hover {
  color: var(--iss-accent) !important;
  text-decoration: none;
}

.text_link:hover::after,
.home-page .text_link:hover::after,
.sub-page .text_link:hover::after {
  transform: translateX(6px);
}

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

.service_card {
  min-height: 268px;
  padding: 30px;
  background: var(--iss-card);
  border: 1px solid var(--iss-border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(20, 38, 63, 0.05);
  transition: transform 220ms var(--iss-ease), box-shadow 220ms var(--iss-ease), border-color 220ms ease;
}

.service_card:hover {
  border-color: rgba(197, 138, 42, 0.48);
  box-shadow: var(--iss-soft-shadow);
  transform: translateY(-4px);
}

.service_card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.service_card h3 {
  margin: 24px 0 0;
  font-size: 1.22rem;
  font-weight: 800;
}

.service_card p {
  margin: 14px 0 0;
  color: var(--iss-muted);
  font-size: 0.96rem;
}

.section_actions {
  margin-top: 32px;
}

.monitoring_grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.monitoring_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.monitoring_list span {
  min-height: 46px;
  padding: 12px 14px;
  color: var(--iss-blue);
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 8px;
  font-weight: 800;
}

/* Brochure CTA Section */
.brochure_cta_section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #14263F 50%, #1a3152 100%);
  position: relative;
  overflow: hidden;
}

.brochure_cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(197, 138, 42, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 187, 240, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.brochure_cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brochure_cta_content {
  max-width: 500px;
}

.brochure_cta_content .section_kicker {
  color: var(--iss-accent) !important;
}

.brochure_cta_content h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.brochure_cta_content p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.brochure_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 16px 32px;
}

.brochure_btn i {
  font-size: 1.2rem;
}

.brochure_cta_visual {
  display: flex;
  justify-content: center;
}

.brochure_preview {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}

.brochure_preview:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(197, 138, 42, 0.3);
}

.brochure_preview img {
  width: 100%;
  height: auto;
  display: block;
}

.brochure_preview_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.brochure_preview:hover .brochure_preview_overlay {
  opacity: 1;
}

.brochure_preview_overlay i {
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .brochure_cta {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .brochure_cta_content {
    max-width: 100%;
  }

  .brochure_cta_content h2 {
    font-size: 2rem;
  }

  .brochure_preview {
    max-width: 350px;
  }
}

@media (max-width: 575px) {
  .brochure_cta_section {
    padding: 70px 0;
  }

  .brochure_cta_content h2 {
    font-size: 1.75rem;
  }

  .brochure_btn {
    width: 100%;
    justify-content: center;
  }
}

.final_cta_section {
  padding: 86px 0;
  background: var(--iss-bg);
}

.final_cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 48px;
  background: var(--iss-dark);
  border-radius: 8px;
  box-shadow: var(--iss-shadow);
}

.final_cta h2,
.sub-page .final_cta h2 {
  color: #ffffff !important;
}

.final_cta p:not(.section_kicker),
.sub-page .final_cta p:not(.section_kicker) {
  color: #ffffff !important;
}

.final_cta p:not(.section_kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.final_cta .section_kicker,
.sub-page .final_cta .section_kicker {
  color: #E3B866 !important;
}

.final_cta_actions {
  justify-content: flex-end;
}

.home-page .info_section,
.sub-page .info_section {
  background: var(--iss-dark);
}

.home-page .info_section .row,
.sub-page .info_section .row {
  justify-content: space-between;
}

.home-page .info_section .info_col,
.sub-page .info_section .info_col {
  margin-bottom: 30px;
}

.home-page .info_section h4,
.sub-page .info_section h4 {
  color: #ffffff;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 6px;
}

.home-page .info_section .info_contact .contact_link_box a,
.sub-page .info_section .info_contact .contact_link_box a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-page .info_section .info_contact .contact_link_box i,
.sub-page .info_section .info_contact .contact_link_box i {
  color: var(--iss-accent);
  margin-top: 4px;
}

.home-page .info_section .info_detail a,
.sub-page .info_section .info_detail a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.home-page .info_section .info_detail i,
.sub-page .info_section .info_detail i {
  color: var(--iss-accent);
  width: 18px;
  text-align: center;
}

.home-page .info_section .info_social,
.sub-page .info_section .info_social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.home-page .info_section .info_social a,
.sub-page .info_section .info_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  transition: background-color 200ms ease, transform 200ms ease;
}

.home-page .info_section .info_social a:hover,
.sub-page .info_section .info_social a:hover {
  background: var(--iss-accent);
  transform: translateY(-3px);
}

.home-page .info_section .info_link_box,
.sub-page .info_section .info_link_box {
  display: flex;
  flex-direction: column;
}

.home-page .info_section .info_social_row,
.sub-page .info_section .info_social_row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.home-page .info_section .info_social,
.sub-page .info_section .info_social {
  margin-bottom: 0;
}

.home-page .info_section .info_links,
.sub-page .info_section .info_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}

.home-page .info_section .info_links a,
.sub-page .info_section .info_links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 200ms ease;
}

.home-page .info_section .info_contact .contact_link_box a:hover,
.home-page .info_section .info_detail a:hover,
.home-page .info_section .info_links a:hover,
.sub-page .info_section .info_contact .contact_link_box a:hover,
.sub-page .info_section .info_detail a:hover,
.sub-page .info_section .info_links a:hover {
  color: var(--iss-accent);
}

.home-page .footer_section {
  background: #ffffff;
  border-top: 1px solid var(--iss-border);
}

.home-page .footer_section p {
  color: var(--iss-muted);
}

/* Clients section — about.html */
.about_clients_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.about_clients_col {
  padding: 28px 26px;
  background: var(--iss-card);
  border: 1px solid var(--iss-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 38, 63, 0.05);
}

.about_clients_col h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--iss-border);
  color: var(--iss-accent);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.about_clients_col li {
  padding: 6px 0;
  font-size: 0.91rem;
  color: var(--iss-text);
  line-height: 1.45;
  border-top: 1px dashed rgba(217, 225, 234, 0.7);
}

.about_clients_col li:first-child {
  border-top: none;
  padding-top: 0;
}

.about_clients_stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--iss-border);
}

.about_clients_stats div {
  text-align: center;
}

.about_clients_stats strong {
  display: block;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--iss-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about_clients_stats span {
  display: block;
  margin-top: 7px;
  color: var(--iss-muted);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .about_clients_grid {
    grid-template-columns: 1fr;
  }

  .about_clients_stats {
    gap: 36px;
  }
}

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

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

@media (max-width: 1199px) {
  .hero_content h1 {
    font-size: 3.35rem;
  }

  .hero_grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 36px;
  }

  .story_copy {
    padding: 42px;
  }
}

@media (max-width: 991px) {
  .home-page .header_section {
    padding: 13px 0;
  }

  .home-page .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--iss-border);
    border-radius: 8px;
    box-shadow: var(--iss-soft-shadow);
  }

  .home-page .custom_nav-container .navbar-nav {
    align-items: stretch;
    padding-top: 0;
  }

  .home-page .custom_nav-container .navbar-nav .nav-item .nav-link {
    text-align: left;
  }

  .home-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero_section {
    padding: 58px 0 52px;
  }

  .hero_grid,
  .position_grid,
  .monitoring_grid,
  .final_cta {
    grid-template-columns: 1fr;
  }

  .hero_content h1 {
    max-width: 760px;
    font-size: 3rem;
  }

  .hero_lead {
    max-width: 720px;
  }

  .hero_visual {
    min-height: 500px;
    margin-right: 22px;
  }

  .hero_main_image {
    min-height: 500px;
  }

  .hero_inset {
    right: -18px;
    bottom: 112px;
    width: min(285px, 44%);
  }

  .home_section {
    padding: 72px 0;
  }

  .section_header h2,
  .position_content h2,
  .monitoring_content h2,
  .final_cta h2 {
    font-size: 2.25rem;
  }

  .story_stage {
    min-height: auto;
  }

  .story_slide {
    grid-template-columns: 1fr;
  }

  .story_media,
  .story_media img {
    min-height: 380px;
  }

  .story_copy {
    padding: 34px;
  }

  .story_controls {
    position: static;
    justify-content: flex-end;
    padding: 14px 16px 0;
    background: #ffffff;
    border-top: 1px solid var(--iss-border);
  }

  .story_tabs {
    display: flex;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .story_tab {
    min-width: 170px;
    padding-bottom: 20px;
  }

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

  .position_content,
  .monitoring_content {
    max-width: none;
  }

  .position_media {
    order: 2;
  }

  .final_cta_actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .home-page .header_section .container-fluid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero_section {
    padding: 42px 0 42px;
  }

  .hero_content h1 {
    font-size: 2.45rem;
  }

  .hero_lead {
    font-size: 1rem;
  }

  .hero_visual,
  .hero_main_image {
    min-height: 360px;
  }

  .hero_visual {
    margin-right: 10px;
  }

  .hero_visual::before {
    inset: 16px -10px -10px 16px;
  }

  .hero_inset {
    right: -10px;
    bottom: 100px;
    width: min(210px, 43%);
  }

  .hero_status {
    top: 12px;
    left: 12px;
  }

  .hero_metric {
    left: 12px;
    bottom: 12px;
    padding: 15px;
  }

  .home_section {
    padding: 60px 0;
  }

  .section_header {
    margin-bottom: 28px;
  }

  .section_header h2,
  .position_content h2,
  .monitoring_content h2,
  .final_cta h2 {
    font-size: 1.95rem;
  }

  .story_media,
  .story_media img {
    min-height: 310px;
  }

  .story_controls {
    justify-content: space-between;
  }

  .story_copy {
    padding: 28px;
  }

  .story_copy h3 {
    font-size: 1.78rem;
  }

  .proof_grid,
  .service_grid,
  .monitoring_list,
  .client_names {
    grid-template-columns: 1fr;
  }

  .position_media img,
  .monitoring_media img {
    height: 360px;
  }

  .final_cta {
    padding: 34px 24px;
  }
}

@media (max-width: 575px) {
  .home-page .navbar-brand span {
    font-size: 1rem;
  }

  .hero_content h1 {
    font-size: 2.05rem;
  }

  .hero_actions,
  .section_actions,
  .final_cta_actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium_btn {
    width: 100%;
  }

  .hero_points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero_visual,
  .hero_main_image {
    min-height: 320px;
  }

  .hero_inset {
    display: none;
  }

  .hero_metric {
    width: calc(100% - 24px);
  }

  .story_media,
  .story_media img {
    min-height: 260px;
  }

  .story_copy {
    padding: 24px;
  }

  .story_tab {
    min-width: 145px;
    min-height: 62px;
    padding: 12px 14px 18px;
  }

  .service_card {
    min-height: auto;
    padding: 24px;
  }

  .position_media img,
  .monitoring_media img {
    height: 300px;
  }
}

/* =====================================================
   SUB-PAGES STYLES
   ===================================================== */

.sub-page {
  color: var(--iss-text);
  background: var(--iss-bg);
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.sub-page h1,
.sub-page h2,
.sub-page h3,
.sub-page h4,
.sub-page h5,
.sub-page h6 {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

.sub-page img {
  max-width: 100%;
}

.sub-page a {
  color: inherit;
}

.sub-page a:focus,
.sub-page button:focus {
  outline: 3px solid rgba(197, 138, 42, 0.35);
  outline-offset: 3px;
}

.sub-page .container {
  max-width: 1180px;
}

.sub-page .sub-hero {
  min-height: auto;
  background: var(--iss-dark);
  overflow: visible;
}

.sub-page .header_section {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: #F6F8FB;
  border-bottom: 1px solid #D9E1EA;
}

.sub-page .header_section .container-fluid {
  max-width: 1240px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.sub-page .navbar-brand span {
  color: var(--iss-dark);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.sub-page .custom_nav-container .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 8px 14px;
  color: var(--iss-blue);
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: none;
}

.sub-page .custom_nav-container .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 2px;
  left: 14px;
  height: 2px;
  background: var(--iss-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sub-page .custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.sub-page .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--iss-dark);
}

.sub-page .custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.sub-page .custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.sub-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link {
  margin-left: 8px;
  padding: 9px 17px;
  color: #ffffff !important;
  background: var(--iss-dark) !important;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(20, 38, 63, 0.14);
}

.sub-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link::after {
  display: none;
}

.sub-page .custom_nav-container .navbar-nav .nav-item.nav-cta:hover .nav-link {
  color: #ffffff !important;
  background: var(--iss-blue) !important;
}

.sub-page .custom_nav-container .navbar-toggler span,
.sub-page .custom_nav-container .navbar-toggler span::before,
.sub-page .custom_nav-container .navbar-toggler span::after {
  background-color: var(--iss-dark);
}

/* Sub-page hero section */
.sub_hero_section {
  padding: 72px 0 86px;
  text-align: center;
}

.sub_hero_content {
  max-width: 760px;
  margin: 0 auto;
}

.sub_hero_content .section_kicker {
  color: var(--iss-accent);
}

.sub_hero_content h1 {
  margin: 0;
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
}

.sub_hero_lead {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Contact page specific styles */
.contact_form_wrapper {
  max-width: none;
}

.premium_form {
  margin-top: 32px;
}

.form_group {
  margin-bottom: 18px;
}

.form_group input,
.form_group textarea {
  width: 100%;
  padding: 16px 20px;
  color: var(--iss-text);
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form_group input:focus,
.form_group textarea:focus {
  border-color: var(--iss-accent);
  box-shadow: 0 0 0 4px rgba(197, 138, 42, 0.15);
  outline: none;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
  color: var(--iss-muted);
}

.form_group textarea {
  min-height: 140px;
  resize: vertical;
}

.form_checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form_checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--iss-accent);
}

.form_checkbox label {
  color: var(--iss-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form_checkbox label a {
  color: var(--iss-accent);
  text-decoration: underline;
}

.form_actions {
  margin-top: 8px;
}

.form_message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.form_success {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.form_error {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

/* Contact info panel */
.contact_info_panel {
  background: var(--iss-dark);
  border-radius: 10px;
  overflow: hidden;
}

.contact_info_card {
  padding: 42px;
}

.contact_info_card h3 {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact_info_item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact_info_item:last-child {
  margin-bottom: 0;
}

.contact_info_item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--iss-accent);
  background: rgba(197, 138, 42, 0.15);
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact_info_item strong {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact_info_item a,
.contact_info_item span {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.contact_info_item a:hover {
  color: var(--iss-accent);
}

/* Privacy page styles */
.privacy_content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy_document {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.privacy_document_link {
  display: block;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--iss-border);
  border-radius: 12px;
  box-shadow: var(--iss-soft-shadow);
  transition: transform 220ms var(--iss-ease), box-shadow 220ms var(--iss-ease), border-color 220ms ease;
}

.privacy_document_link:hover {
  border-color: var(--iss-accent);
  box-shadow: var(--iss-shadow);
  transform: translateY(-4px);
  text-decoration: none;
}

.privacy_document_link img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.privacy_document_label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--iss-dark);
  font-weight: 700;
}

.privacy_document_label i {
  color: var(--iss-accent);
  font-size: 1.2rem;
}

.privacy_info {
  margin-top: 48px;
}

.proof_grid_center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Service card link style */
.service_card .text_link {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--iss-accent) !important;
}

.service_card .text_link:hover {
  color: var(--iss-dark) !important;
}

/* Service grid 4 columns */
.service_grid_4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sub-page .footer_section {
  background: #ffffff;
  border-top: 1px solid var(--iss-border);
}

.sub-page .footer_section p {
  color: var(--iss-muted);
}

/* Sub-page responsive */
@media (max-width: 991px) {
  .sub-page .header_section {
    padding: 13px 0;
  }

  .sub-page .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--iss-border);
    border-radius: 8px;
    box-shadow: var(--iss-soft-shadow);
  }

  .sub-page .custom_nav-container .navbar-nav {
    align-items: stretch;
    padding-top: 0;
  }

  .sub-page .custom_nav-container .navbar-nav .nav-item .nav-link {
    text-align: left;
  }

  .sub-page .custom_nav-container .navbar-nav .nav-item.nav-cta .nav-link {
    margin: 8px 0 0;
    text-align: center;
  }

  .sub_hero_content h1 {
    font-size: 2.8rem;
  }

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

  .contact_info_card {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .sub-page .header_section .container-fluid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .sub_hero_section {
    padding: 52px 0 68px;
  }

  .sub_hero_content h1 {
    font-size: 2.25rem;
  }

  .sub_hero_lead {
    font-size: 1rem;
  }

  .service_grid_4 {
    grid-template-columns: 1fr;
  }

  .privacy_document_link {
    padding: 24px;
  }

  .privacy_document_link img {
    width: 140px;
  }
}

@media (max-width: 575px) {
  .sub-page .navbar-brand span {
    font-size: 1rem;
  }

  .sub_hero_content h1 {
    font-size: 1.95rem;
  }

  .contact_info_card {
    padding: 24px;
  }

  .contact_info_item {
    flex-direction: column;
    gap: 12px;
  }
}
