:root {

  --v2-bg: #2d2d2d;
  --v2-bg2: #12121a;
  --v2-bg3: #1a1a26;
  --v2-accent: #8ab4f8;
  --v2-accent2: #aac8fb;
  --v2-accent3: #5c91e0;
  --v2-gold: #e07820;
  --v2-black: #1a1a1a;
  --v2-brand: #c56600;
  --v2-button-hover: #1db954;
  --v2-text: #e2e8f0;
  --v2-text-muted: #94a3b8;
  --v2-border: #2d2d44;
  --v2-radius: 12px;
}

.linktag, .linktag:visited {
  color: var(--v2-accent3);
  text-decoration: underline;
  margin-right:4px;
}


.hero-top-media {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  line-height: 0;
  background: var(--v2-bg3);
  display: flex;
  justify-content: center;
}

.hero-top-media-video {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
}

.hero-top-media-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 64px;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-top-media-byline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 28px;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  z-index: 1;
  background: var(--v2-bg3);
}

.hero-top-media-byline .highlight {
  color: var(--v2-brand);
}

/* V2 shared sections and components (only styles not covered by main.css). */
.hero {
  width: 100vw;
  display: flex;
  align-items: center;
  padding: 2rem 2rem;

  overflow: hidden;
  background: var(--v2-bg3);
}

.hero::before {
  content: none;
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h2 {
  color: #fff;
}

.hero .highlight {
  color: var(--color-blue-link);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--v2-text);
  max-width: 780px;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: center;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-right:18px;
  background: var(--v2-brand);
  color:var(--v2-text) !important;
  border: none;
  border-radius: 8px;
  font-size: var(--font-size-standard);
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1 !important;
  animation: none !important;

}

.product-btn:hover {
  background: var(--v2-button-hover);
  color:var(--v2-text) !important;
}

.blue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-right:18px;
  background: var(--v2-accent3);
  color:var(--v2-text) !important;
  border: none;
  border-radius: 8px;
  font-size: var(--font-size-standard);
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1 !important;
  animation: none !important;

}

.blue-btn:hover {
  background: var(--v2-button-hover);
  color:var(--v2-text) !important;
}





.section {
  padding: 3rem 2rem;
}

.section-alt {
  background: var(--v2-bg2);
}

.section-inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v2-accent2);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.section-byline {
  color: var(--v2-text);
  font-size: clamp(1.11rem, 1.85vw, 1.61rem);
  font-weight: 200;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--v2-text-muted);

  margin-bottom: 3rem;
  line-height: 1.8;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Flex variant — cards stretch to fill all available width in each row */
.cards-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.cards-flex > .card {
  flex: 1 1 260px;   /* grow + shrink freely; 260px is the comfortable min width */
}

.card {
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--v2-accent);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card p {
  font-size: 0.9rem;
  color: var(--v2-text-muted);
  line-height: 1.7;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1.618fr;

  align-items: stretch;
  margin-bottom: 4rem;
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
}

.product-block.reverse {
  direction: rtl;
}

.product-block.reverse > * {
  direction: ltr;
}

.product-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--v2-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Feature cards inside product-links */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card {
  background: var(--v2-bg2);
  border: 1px solid var(--v2-border);
  border-left: 3px solid var(--v2-accent3);
  border-radius: var(--v2-radius);
  padding: 1.25rem 1.5rem 1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--v2-accent);
  border-left-color: var(--v2-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 145, 224, 0.12);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--v2-text-muted);
  line-height: 1.7;
  margin: 0 0 0.85rem;
}

.feature-card .linktag-row {
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  color: var(--v2-text-muted);
}

.feature-card .blue-btn {
  margin-right: 0;
  padding: 8px 18px;
  font-size: 0.85rem;
}

.rotation-wrap {
  position: relative;
  width: 100%;
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  min-height: 280px;
}

.rotation-slide {
  display: none;
  grid-template-columns: 1fr 1.618fr;
  align-items: center;
  min-height: 320px;
}

.rotation-slide.active {
  display: grid;
}

.rotation-slide-content {
  padding: 2.5rem;
}

.rotation-slide-img-wrapper {
  position: relative;
  line-height: 0;
}

.rotation-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 80%;
  object-fit: cover;
  object-position: center;
}

.rotation-slide-overlay-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(26, 26, 38, 0.9) 0%, rgba(26, 26, 38, 0.4) 70%, transparent 100%);
  z-index: 2;
  line-height: normal;
}

.rotation-slide-overlay-mobile .rotation-slide-group,
.rotation-slide-overlay-mobile .rotation-slide-title {
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.rotation-slide-overlay-mobile .rotation-slide-title {
  font-size: 1.2rem;
}

.rotation-slide-group {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--v2-accent2);
  margin-bottom: 0.6rem;
}

.rotation-slide-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.rotation-slide-text {
  font-size: 0.95rem;
  color: var(--v2-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.rotation-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 1rem 1.25rem;
}

.rotation-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #4b5563;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.rotation-dot.active {
  background: var(--v2-gold);
  transform: scale(1.15);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-card {
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
  border-color: var(--v2-gold, #e67e00);
}

/* Wrapper anchor — reset link decoration so the card looks normal */
.plan-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.tech-card {
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.card-btn-wrap {
  margin-top: auto;
  padding-top: 1.5rem;
}

.content-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.content-page p,
.content-page li {
  color: var(--v2-text-muted);
  line-height: 1.8;
}

.cta-strip-solutions {
  background: linear-gradient(135deg, rgba(138, 180, 248, 0.18) 0%, rgba(92, 145, 224, 0.12) 100%);
  border: 1px solid rgba(138, 180, 248, 0.3);
  border-radius: var(--v2-radius);
  padding: 3rem;
  text-align: center !important;

  align-items: center !important;
  margin: 16px;
}



.solutions-block-96-head {

  margin: 16px;
  width: 96%;

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 48px;

}

.solutions-block-96-basic {

  margin: 16px;
  width: 96%;

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 48px;

}

.solutions-block-96 {
  background: #222;
  border: 2px solid #444;
  margin: 16px;
  width: 96%;
  border-radius: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 48px;

}

.solutions-group {
  margin-bottom: 4rem;
}

.solutions-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v2-accent2);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--v2-border);
}

.solution-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  margin-bottom: 1rem;
}

/* Keep solution preview images fluid within their grid column. */
.solution-row img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Main hero images on solution detail pages scale to container width. */
.solutions-content .content-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.solution-row:hover {
  border-color: var(--v2-accent);
}

@media (max-width: 992px) {
  .rotation-slide.active {
    grid-template-columns: 1fr;
    position: relative;
  }

  .rotation-slide-img {
    min-height: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  /* Overlay group and title over the image on mobile */
  .rotation-slide-content {
    padding: 1.5rem;
  }

  .rotation-slide-header-mobile {
    display: none;
  }
}

@media (max-width: 992px) {
  .rotation-slide {
    display: none;
    flex-direction: column;
  }

  .rotation-slide.active {
    display: flex;
  }

  .rotation-slide-img-wrapper {
    width: 100%;
  }

  .rotation-slide-overlay-mobile {
    display: flex;
  }

  /* Hide the original header in the text content area on mobile */
  .rotation-slide-content .rotation-slide-group,
  .rotation-slide-content .rotation-slide-title {
    display: none;
  }

  .rotation-slide-read-more {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-block {
    grid-template-columns: 1fr;
  }

  .product-block.reverse {
    direction: ltr;
  }

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

  .solution-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {

  .hero-top-media-title {
    bottom: 64px;
    font-size: 2.3rem !important;
    white-space: normal;
    width: 90%;
    text-align: center;
  }

  .hero-top-media-byline {
    bottom: 28px;
    font-size: 1.2rem !important;
    white-space: normal;
    width: 90%;
    text-align: center;
  }

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

  .tech-card {
    min-height: auto;
  }

  .rotation-slide.active {
    grid-template-columns: 1fr;
    position: relative;
  }

  .rotation-slide-img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  /* Overlay group and title over the image on mobile */
  .rotation-slide-content {
    padding: 1.5rem;
  }

  .rotation-slide-header-mobile {
    display: none;
  }
}

.product-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: var(--v2-black);
  padding-left: 48px;
  padding-right: 48px;
  min-height: 240px;
}

.product-icon-area img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
  margin-bottom:16px;
}

.product-icon-area video {
  width: 100%;
  display: block;
  margin-bottom:16px;
  object-fit: cover;
  margin-top: 0;
}

.product-icon-area .icon-text-wrapper {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: calc(100% - 32px);
}

.product-icon-area .icon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
  margin: 0;
}

.product-icon-area .icon-subtitle {
  font-size: 0.85rem;
  color: var(--v2-text);
  margin-top: 0.25rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Utility: visible on desktop only, hidden below 992px */
.desktop-only {
  display: inline;
}

@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
}

/* ── Overview Media Cards ─────────────────────────────────────────────── */
.overview-media-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.overview-media-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--v2-radius);
  overflow: hidden;
  background: var(--v2-bg3);
  border: 1px solid var(--v2-border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.overview-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--v2-accent);
}

.overview-media-card-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.overview-media-card-wrap video,
.overview-media-card-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gradient so the title remains readable over the video */
.overview-media-card-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 38%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

/* h3 centered at the golden-cut line: 61.8% from top = 38.2% from bottom */
.overview-media-card-title {
  position: absolute;
  top: 61.8%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.overview-media-card > p {
  padding: 1.25rem 1.5rem;
  margin: 0;
  color: var(--v2-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.card-text-pad {
  margin:16px;
}

/* Full-width text card sitting below a two-column overview-media-cards row */
.overview-full-card {
  display: block;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .overview-media-cards {
    grid-template-columns: 1fr;
  }
}
/* ── end Overview Media Cards ─────────────────────────────────────────── */

/* Detail page image — respects natural proportions */
.detailImage {
  display: block;
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  margin: 2rem auto;
  border-radius: var(--v2-radius);
}

@media (max-width: 767px) {
  .detailImage {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
