/* Base */
:root {
  --brand: #ee1e46;
  --brand-soft: #ff6f8d;
  --brand-light: #ff8aa1;
  --bg-dark: #07101f;
  --bg-darker: #040b16;
  --bg-mid: #0b1527;
  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.76);
  --text-muted: rgba(255,255,255,0.68);
  --text-faint: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.05);
  --shadow: 0 16px 40px rgba(0,0,0,0.20);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
}

.page-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 991.98px) {
  .page-wide {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 767.98px) {
  .page-wide {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.premium-section {
  padding: 90px 0;
  position: relative;
}

.premium-section-dark {
  background: var(--bg-dark);
  color: var(--text);
}

.premium-section-light {
  background: var(--bg-mid);
  color: var(--text);
}

.premium-section-deeper {
  background: var(--bg-darker);
  color: var(--text);
}

.section-fade-bottom {
  position: relative;
  overflow: hidden;
}

.section-fade-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(4,11,22,0) 0%, rgba(4,11,22,0.85) 100%);
  opacity: 0.7;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}

.section-copy {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 760px;
}

.glass-panel,
.pillar-card,
.solution-card,
.outcome-card,
.homepage-proof-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-panel {
  padding: 28px;
}

.pillar-card,
.solution-card,
.outcome-card {
  height: 100%;
  padding: 28px;
}

.homepage-proof-card {
  height: 100%;
  padding: 30px;
}

.pillar-icon,
.solution-icon,
.outcome-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(238,30,70,0.14);
  border: 1px solid rgba(238,30,70,0.25);
  color: var(--brand-soft);
  font-size: 18px;
  font-weight: 700;
}

.pillar-card h3,
.solution-card h3,
.outcome-card h3,
.homepage-proof-card h4 {
  color: var(--text);
  font-weight: 700;
}

.pillar-card h3,
.solution-card h3,
.outcome-card h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.homepage-proof-card h4 {
  font-size: 24px;
  margin-bottom: 14px;
}

.pillar-card p,
.solution-card p,
.outcome-card p,
.homepage-proof-card p,
.homepage-proof-card li {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 16px;
}

.homepage-proof-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 10px;
}

.btn-premium-primary,
.btn-premium-secondary {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-premium-primary {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(238,30,70,0.25);
}

.btn-premium-primary:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(238,30,70,0.35);
}

.btn-premium-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-premium-secondary:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.16);
}

.solutionsWidth {
  width: 210px;
  margin-top: 5px !important;
}

.solutionsBox {
  display: inline-block;
  color: #fff;
  background-color: var(--brand);
  border-color: var(--brand);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 12px;
  height: 54px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.solutionsBox:hover {
  text-decoration: none;
  opacity: 0.95;
  transform: translateY(-1px);
  color: #fff;
}

.item {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

.fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  overflow: visible;
  width: 65% !important;
  height: 65%;
}

blockquote {
  position: relative;
  margin: 0.5em;
  padding: 0.5em 2em 0.5em 3em;
}

blockquote:before {
  font-family: Georgia, serif;
  position: absolute;
  font-size: 6em;
  line-height: 1;
  top: 0;
  left: 0;
  content: "\201C";
}

blockquote footer {
  padding: 0 2em 0 0;
  text-align: right;
}

blockquote cite:before {
  content: "\2013";
}

.casestudy {
  float: right;
  display: block;
  overflow-clip-margin: content-box;
  overflow: clip;
  width: 160px;
  max-width: 100%;
  border-radius: 7px;
  margin: 0px 0px 15px 20px;
}

.smLogoImg {
  margin-bottom: 25px;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
}

.btn-padding {
  margin-bottom: 10px !important;
}

.site-navbar .site-navigation .site-menu > li > a.nav-cta {
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: 7px 14px;
  margin-left: 8px;
  white-space: nowrap;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 5px 16px;
}

.site-navbar .site-navigation .site-menu > li > a.nav-cta:hover {
  opacity: .95;
  color: #fff;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.nav-cta:hover {
  color: #fff !important;
}

.site-navbar .site-navigation .site-menu > li.active > a.nav-link {
  position: relative;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li.active > a.nav-link:before {
  display: none !important;
}

.site-navbar .site-navigation .site-menu > li.active > a.nav-link:after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -6px;
  height: 2px;
  background: #fff;
}

.site-logo img {
  border-radius: 10px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.site-logo img:hover {
  transform: translateY(-1px);
}

.hero-premium {
  position: relative;
  background-image:
    linear-gradient(110deg, rgba(5, 10, 22, 0.88) 0%, rgba(5, 10, 22, 0.75) 45%, rgba(5, 10, 22, 0.60) 100%),
    url('images/bg_1.jpg');
  background-size: cover;
  background-position: center center;
  padding: 120px 0 95px;
  overflow: hidden;
}

.hero-premium:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(238,30,70,0.30) 0%, rgba(238,30,70,0) 70%);
  pointer-events: none;
}

.hero-premium:after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 72%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.90);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-premium .hero-title {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.5rem, 5.4vw, 4.85rem);
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
  max-width: 760px;
}

.hero-premium .hero-title .accent {
  color: #ff5d7b;
}

.hero-premium .hero-subtitle {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.45;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,0.90);
  max-width: 760px;
  margin-bottom: 15px;
}

.hero-premium .hero-support {
  color: rgba(255,255,255,0.74);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-note {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

.hero-product-frame {
  position: relative;
  margin-top: 20px;
}

.hero-product-frame:before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(238,30,70,0.08) 100%);
  filter: blur(18px);
  opacity: 0.7;
  z-index: 0;
}

.hero-dashboard-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15,20,36,0.88) 0%, rgba(10,16,30,0.82) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-dashboard-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 20%);
  pointer-events: none;
}

.hero-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-status-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74,222,128,0.12);
}

.hero-status-tag {
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-dashboard-card h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hero-dashboard-card p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 22px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
}

.metric-card span {
  display: block;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.metric-card strong {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.trend-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 18px 14px;
  position: relative;
  z-index: 1;
}

.trend-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.trend-head strong {
  color: #fff;
  font-size: 16px;
  display: block;
}

.trend-head span {
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  display: block;
}

.trend-tag {
  color: #ff96a9;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.visibility-points {
  display: grid;
  gap: 12px;
}

.visibility-point {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.5;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.signal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.message-alert {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.7;
}

.message-alert-warning {
  background: rgba(255, 173, 64, 0.10);
  border: 1px solid rgba(255, 173, 64, 0.22);
  color: #ffd69b;
}

.message-alert-success {
  background: rgba(33, 196, 122, 0.10);
  border: 1px solid rgba(33, 196, 122, 0.22);
  color: #bdf5d8;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.audience-list li {
  padding: 14px 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  font-weight: 500;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(238,30,70,0.14) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-panel p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto 26px;
}

.testimonial-section-premium {
  padding: 85px 0 65px;
  background: var(--bg-dark);
}

.testimonial-section-premium .heading {
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
}

.testimonial-section-premium .title-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-top: 8px;
}

.testimonial-section-premium .custom-media {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
  height: 100%;
  transition: all 0.25s ease;
}

.testimonial-section-premium .custom-media:hover {
  transform: translateY(-2px);
}

.testimonial-section-premium .custom-media .text h3,
.testimonial-section-premium .custom-media .text .headingScouts {
  color: #ffffff;
}

.testimonial-section-premium .custom-media .text p,
.testimonial-section-premium .custom-media .text .testimonials {
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
}

.testimonial-section-premium .custom-media .text .meta {
  color: rgba(255,255,255,0.45);
}

.testimonial-section-premium .custom-media .img img {
  border-radius: 14px;
}

.footer-section {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72);
}

.footer-section .widget h3 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-section .links li,
.footer-section .links li a,
.footer-section p,
.footer-section .isa-footer-link {
  color: rgba(255,255,255,0.68);
  transition: color 0.2s ease;
}

.footer-section .links li a:hover,
.footer-section .isa-footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-section .pt-5 {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .hero-premium {
    padding: 105px 0 75px;
  }

  .hero-product-frame {
    margin-top: 34px;
  }

  .signal-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-premium-primary,
  .btn-premium-secondary {
    width: 100%;
    text-align: center;
  }

  .signal-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .premium-section {
    padding: 70px 0;
  }

  .hero-premium .hero-title {
    font-size: 2.45rem;
  }

  .solutionsWidth {
    width: 100%;
  }
}