﻿/* ============================================================
   Welcome / Landing Page
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-color: #0B1A33;
  --secondary-color: #FF7043;
  --tertiary-color: #22C55E;
  --subtitle-color: #0B1A33;
}

.wlcm-body {
  background: var(--background-color);
  color: var(--default-color);
  font-family: "Poppins", sans-serif;
}

.wlcm {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
}

/* ---- Navbar ---- */
.wlcm-nav {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 1020;
  background: color-mix(in srgb, var(--card-bg), transparent 7%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* border-bottom: 1px solid var(--border-color); */
  border-bottom: 1px solid transparent;
  transform: translateX(-50%);
  transition: top .28s ease, width .28s ease, border-radius .28s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.wlcm-nav.is-scrolled {
  top: 12px;
  width: min(1110px, calc(100% - 24px));
  background: color-mix(in srgb, var(--card-bg), transparent 2%);
  border-color: var(--border-color);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 32, 64, .08);
}




.wlcm-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
  transition: height .25s ease;
}

.wlcm-nav.is-scrolled .wlcm-navbar {
  height: 64px;
}

.wlcm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wlcm-brand-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.wlcm-brand-name {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.wlcm-brand-accentt {
  color: var(--secondary-color);
}

.wlcm-navbar:hover .wlcm-brand {
  border: none;
}

.wlcm-brand-accent {
  color: var(--tertiary-color);
}

/* .wlcm-brand-tech,
.wlcm-brand-accent {
  display: inline-block;
} */

.wlcm-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wlcm-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.wlcm-nav-links a {
  position: relative;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.wlcm-nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--hover-color);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.wlcm-nav-links a:hover {
  color: var(--main-color);
}

.wlcm-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.wlcm-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--heading-color);
  font-size: 1.35rem;
}

.wlcm-theme-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--border-color); */
  border-radius: 10px;
  background: var(--card-bg);
  color: var(--muted-color);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.wlcm-theme-toggle:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ---- Shared bits ---- */
.wlcm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--primary-color, #0B1A33), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--primary-color, #0B1A33), transparent 85%);
  color: var(--primary-color, #0B1A33);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(11, 26, 51, 0.04);
}


.wlcm-kicker i,
.wlcm-kicker svg {
  font-size: 0.85rem;
  color: #FF7043;
}

.wlcm-accent {
  color: var(--secondary-color);
}

/* ---- Hero ---- */
.wlcm-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
  background: #f5f7ff;
  isolation: isolate;
}

.wlcm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 86% 24%, rgba(161, 204, 255, .48) 0 13%, transparent 13.2%),
    radial-gradient(circle at 94% 30%, rgba(219, 235, 255, .9) 0 23%, transparent 23.2%),
    radial-gradient(circle at 9% 84%, rgba(255, 144, 19, .10) 0 12%, transparent 12.2%),
    linear-gradient(rgba(1, 57, 131, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 57, 131, .035) 1px, transparent 1px);
  background-size: auto, auto, auto, 28px 28px, 28px 28px;
}

.wlcm-hero::before,
.wlcm-hero::after {
  position: absolute;
  z-index: 0;
  width: clamp(180px, 21vw, 330px);
  height: clamp(180px, 21vw, 330px);
  border: 1px solid rgba(1, 57, 131, .10);
  border-radius: 42% 58% 53% 47% / 44% 43% 57% 56%;
  content: "";
}

.wlcm-hero::before {
  top: -150px;
  right: 9%;
  background: rgba(219, 235, 255, .38);
}

.wlcm-hero::after {
  bottom: -190px;
  left: -80px;
  background: rgba(255, 144, 19, .05);
}

.wlcm-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}



.wlcm-hero-title {
  margin: 0 0 16px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}


.wlcm-hero-sub {
  margin: 0 0 24px;
  max-width: 520px;
  color: var(--muted-color);
  font-size: 1rem;
  line-height: 1.7;
}

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

.wlcm-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.wlcm-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.wlcm-hero-trust i {
  color: #22C55E;
  font-size: 0.95rem;
  line-height: 1;
}

/* ---- Hero mockup panel ---- */
.wlcm-hero-visual {
  position: relative;
}

.wlcm-team-story-video-card {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  border: 6px solid #fff;
  border-radius: 24px;
  background: #0a1930;
  box-shadow: 0 24px 58px rgba(11, 47, 98, .22), 0 0 0 1px rgba(1, 57, 131, .1);
  aspect-ratio: 9 / 16;
}

.wlcm-team-story-video-card::before {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 31%;
  height: 16px;
  border-radius: 999px;
  background: rgba(5, 17, 35, .9);
  content: "";
  transform: translateX(-50%);
}

.wlcm-team-story-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wlcm-team-story-video-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%);
}

.wlcm-team-story-video-play i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(255, 144, 19, .96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  font-size: 1.7rem;
  transition: transform .2s ease, background .2s ease;
}

.wlcm-team-story-video-play:hover i,
.wlcm-team-story-video-play:focus-visible i {
  background: var(--hover-color);
  transform: scale(1.08);
}

.wlcm-team-story {
  padding: clamp(32px, 5vw, 64px) 0;
  background: color-mix(in srgb, var(--main-color), transparent 96%);
}

.wlcm-team-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.wlcm-team-story-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(11, 32, 64, .14);
}

.wlcm-team-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}



.wlcm-team-story-copy h2 {
  margin: 0 0 16px;
  color: var(--primary-color);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}


.wlcm-team-story-copy p {
  max-width: 510px;
  margin: 0 0 20px;
  color: var(--muted-color);
  font-size: .95rem;
  line-height: 1.8;
}

.wlcm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color, #0B1A33);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wlcm-text-link i {
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.wlcm-text-link:hover {
  color: var(--secondary-color, #FF7043);
}

.wlcm-text-link:hover i {
  transform: translateX(4px);
}

.wlcm-back-to-top {
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: var(--hover-color);
  box-shadow: 0 10px 24px rgba(255, 144, 19, .36);
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.wlcm-back-to-top.visible {
  transform: translateY(0);
}

.wlcm-back-to-top:hover {
  background: var(--main-color);
  box-shadow: 0 12px 28px rgba(1, 57, 131, .28);
  transform: translateY(-3px);
}

.wlcm-book-demo-float {
  display: none;
}

/* ---- Book a demo page ---- */
.wlcm-back-home {
  color: var(--main-color);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
}

.wlcm-back-home:hover {
  color: var(--hover-color);
}

.wlcm-back-home i {
  margin-right: 6px;
}

.wlcm-demo-page {
  padding: clamp(46px, 8vw, 100px) 0;
  background: #f5f7ff;
}

.wlcm-demo-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
  /* max-width: 1080px; */
}

.wlcm-demo-intro h1 {
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
}

.wlcm-demo-intro>p {
  margin: 0;
  max-width: 470px;
  color: var(--muted-color);
  font-size: 1rem;
  line-height: 1.8;
}

.wlcm-demo-benefits {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  color: var(--primary-color);
  font-size: .88rem;
  font-weight: 600;
}

.wlcm-demo-benefits i {
  margin-right: 9px;
  color: var(--secondary-color);
}

.wlcm-demo-card {
  padding: clamp(24px, 4vw, 42px);
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: 0 24px 60px rgba(11, 32, 64, .10);
}

.wlcm-demo-form-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--secondary-color);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.wlcm-demo-card h2 {
  margin: 0 0 5px;
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.wlcm-demo-card>p {
  margin: 0 0 24px;
  color: var(--muted-color);
  font-size: .84rem;
}

.wlcm-demo-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--heading-color);
  font-size: .78rem;
  font-weight: 600;
}

.wlcm-demo-form label span {
  color: #475569;
}

.wlcm-demo-form input:not([type="checkbox"]),
.wlcm-demo-form select,
.wlcm-demo-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  outline: none;
  background: var(--card-bg);
  color: var(--default-color);
  font: inherit;
  font-size: .85rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wlcm-demo-form textarea {
  min-height: 42px;
  resize: vertical;
}

.wlcm-demo-form input:focus,
.wlcm-demo-form select:focus,
.wlcm-demo-form textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(1, 57, 131, .10);
}

.wlcm-demo-form .is-invalid {
  border-color: #dc3545;
}

.wlcm-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0 !important;
  color: var(--muted-color) !important;
  font-size: .74rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.wlcm-consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--main-color);
}

.wlcm-demo-alert {
  margin-bottom: 18px;
  border-radius: 10px;
  font-size: .84rem;
}

/* Keep the desktop demo experience compact and comfortably above the fold. */
@media (min-width: 992px) {
  .wlcm-demo-page {
    padding: 32px 0;
  }

  .wlcm-demo-grid {
    gap: clamp(42px, 6vw, 76px);
    align-items: center;
  }

  .wlcm-demo-intro h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
  }

  .wlcm-demo-intro>p {
    font-size: .91rem;
    line-height: 1.65;
  }

  .wlcm-demo-benefits {
    gap: 9px;
    margin-top: 20px;
  }

  .wlcm-demo-card {
    padding: 28px 28px 20px;
  }

  .wlcm-demo-card>p {
    margin-bottom: 17px;
  }

  .wlcm-demo-form label {
    margin-bottom: 5px;
  }

  .wlcm-demo-form input:not([type="checkbox"]),
  .wlcm-demo-form select,
  .wlcm-demo-form textarea {
    padding: 8px 10px;
  }

  .wlcm-consent {
    margin: 14px 0 !important;
  }
}

.wlcm-panel {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--card-bg);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--heading-color), transparent 90%);
  overflow: hidden;
}

.wlcm-panel-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-color);
  background: color-mix(in srgb, var(--border-color), transparent 55%);
}

.wlcm-panel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.wlcm-panel-dot.red {
  background: #ff5f57;
}

.wlcm-panel-dot.amber {
  background: #febc2e;
}

.wlcm-panel-dot.green {
  background: #28c840;
}

.wlcm-panel-title {
  margin-left: 6px;
  color: var(--muted-color);
  font-size: 0.75rem;
  font-weight: 600;
}

.wlcm-panel-body {
  padding: 18px;
}

.wlcm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.wlcm-stat {
  padding: 12px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--card-bg), black 1%);
}

.wlcm-stat-label {
  display: block;
  color: var(--muted-color);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.wlcm-stat-value {
  display: block;
  color: var(--heading-color);
  font-family: var(--mono-font);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.wlcm-stat-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
}

.wlcm-stat-trend.up {
  color: var(--success-color);
}

.wlcm-pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted-color);
  font-size: 0.75rem;
  font-weight: 600;
}

.wlcm-pipeline-head strong {
  color: var(--heading-color);
  font-family: var(--mono-font);
}

.wlcm-pipeline-track {
  display: flex;
  gap: 6px;
}

.wlcm-pipeline-seg {
  flex: 1;
  border-radius: 4px;
  padding: 12px 8px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.wlcm-pipeline-track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.wlcm-pipeline-seg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
}

.wlcm-pipeline-seg span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1;
}

.wlcm-pipeline-seg.seg-new {
  background: var(--accent-color);
}





/* ---- Features ---- */
.wlcm-features {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--border-color);
  background: color-mix(in srgb, var(--card-bg), transparent 60%);
}

.wlcm-section-head {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.wlcm-section-title {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

.wlcm-section-sub {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.wlcm-feature {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--card-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wlcm-feature:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--hover-color), transparent 60%);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--heading-color), transparent 93%);
}

.wlcm-feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--hover-color), transparent 90%);
  color: var(--hover-color);
  font-size: 1.3rem;
}

.wlcm-feature h3 {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 1.02rem;
  font-weight: 600;
}

.wlcm-feature p {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ---- Collaboration image section ---- */
.wlcm-collaboration {
  padding: clamp(44px, 7vw, 84px) 0;
  overflow: hidden;
}

.wlcm-collaboration-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.wlcm-collaboration-copy h2 {
  margin: 0 0 14px;
  color: var(--primary-color);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.28;
}

.wlcm-collaboration-copy>p {
  margin: 0 0 22px;
  color: var(--muted-color);
  font-size: .95rem;
  line-height: 1.8;
}

.wlcm-collaboration-points {
  display: grid;
  gap: 11px;
  color: var(--heading-color);
  font-size: .84rem;
  font-weight: 600;
}

.wlcm-collaboration-points i {
  margin-right: 8px;
  color: var(--secondary-color)
}

.wlcm-collaboration-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(11, 32, 64, .16);
}

.wlcm-collaboration-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 57, 131, .18), transparent 50%);
  content: "";
  pointer-events: none;
}

.wlcm-collaboration-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 67%;
}

/* ---- Shared landing-page surface system ---- */
.wlcm .btn,
.wlcm-demo-form input:not([type="checkbox"]),
.wlcm-demo-form select,
.wlcm-demo-form textarea {
  border-radius: 4px;
}

.wlcm-problem,
.wlcm-benefit,
.wlcm-feature,
.wlcm-nav.is-scrolled {
  border-radius: 14px;
}

.wlcm-problem,
.wlcm-benefit,
.wlcm-feature {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.wlcm-problem:hover,
.wlcm-benefit:hover,
.wlcm-feature:hover {
  border-color: var(--secondary-color);
}

.wlcm-problem-icon,
.wlcm-benefit-icon,
.wlcm-feature-icon {
  border-radius: 12px;
}

.wlcm-panel {
  border-radius: 16px;
}

.wlcm-cta-card {
  border-radius: 18px;
}

.wlcm-team-story-image,
.wlcm-collaboration-image,
.wlcm-demo-card {
  border-radius: 16px;
}

.wlcm-section-head {
  margin-bottom: clamp(30px, 4vw, 44px);
}

/* ---- CTA band ---- */
.wlcm-cta {
  padding: clamp(40px, 6vw, 72px) 0;
}

.wlcm-cta-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 6px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.16) 0, transparent 34%),
    linear-gradient(135deg, var(--primary-color), color-mix(in srgb, var(--primary-color), #012970 30%));
  box-shadow: 0 18px 44px color-mix(in srgb, var(--primary-color), transparent 72%);
}

.wlcm-cta-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

.wlcm-cta-card p {
  margin: 0 auto 24px;
  max-width: 460px;
  color: color-mix(in srgb, #fff, transparent 20%);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Footer ---- */
.wlcm-footer {
  margin-top: auto;
  padding-top: 60px;
  background: var(--card-bg);
}

.wlcm-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 32px;
  padding-bottom: 32px;
}

.wlcm-footer-brand-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}

.wlcm-footer-brand p {
  margin: 0;
  max-width: 320px;
  color: var(--muted-color);
  font-size: 0.85rem;
  line-height: 1.65;
}

.wlcm-footer-col h4 {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
}

.wlcm-footer-col>p {
  margin: 0 0 12px;
  color: var(--muted-color);
  font-size: 0.82rem;
  line-height: 1.6;
}

.wlcm-footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wlcm-footer-contact:hover {
  color: var(--primary-color)
}

.wlcm-footer-contact i {
  color: var(--primary-color)
}

.wlcm-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.wlcm-footer-links a {
  color: var(--muted-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wlcm-footer-links a:hover {
  color: var(--accent-color);
}

.wlcm-footer-bar {
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
}

.wlcm-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-color);
  font-size: 0.8rem;
}

.wlcm-footer-copy a {
  color: var(--default-color);
  font-weight: 600;
  text-decoration: none;
}

.wlcm-footer-tag {
  color: var(--muted-color);
  font-size: 0.78rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .wlcm-nav.is-scrolled {
    top: 8px;
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .wlcm-navbar {
    position: relative;
  }

  .wlcm-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .wlcm-nav-links {
    position: absolute;
    top: calc(100% - 4px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 18px 40px rgba(11, 32, 64, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .wlcm-nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wlcm-nav-links a {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .wlcm-nav-links a:hover {
    background: color-mix(in srgb, var(--main-color), transparent 93%);
  }

  .wlcm-nav-links a::after {
    display: none;
  }

  .wlcm-hero-inner {
    grid-template-columns: 1fr;
  }

  .wlcm-team-story-grid {
    grid-template-columns: 1fr;
  }

  .wlcm-team-story-copy {
    max-width: 640px;
  }

  .wlcm-collaboration-grid {
    grid-template-columns: 1fr;
  }

  .wlcm-collaboration-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .wlcm-demo-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .wlcm-hero-visual {
    order: -1;
  }

  .wlcm-team-story-video-card {
    width: min(100%, 260px);
  }

  .wlcm-hero-sub {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .wlcm {
    padding-top: 60px;
  }

  .wlcm-nav.is-scrolled {
    width: calc(100% - 16px);
  }

  .wlcm-navbar {
    height: 60px;
  }

  .wlcm-brand-logo {
    height: 26px;
    width: 26px;
  }

  .wlcm-brand-name {
    font-size: 1rem;
  }

  .wlcm-theme-toggle {
    display: none;
  }

  .wlcm-hero-trust {
    gap: 12px;
  }

  .wlcm-stats {
    grid-template-columns: 1fr;
  }
}

/* ---- Problems ---- */
.wlcm-problems {
  padding: clamp(40px, 6vw, 72px) 0;
  background-color: #f4f7f6;
  background-color: #fff;
}

.wlcm-problem {
  height: 100%;
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--card-bg);
}

.wlcm-problem-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: color-mix(in srgb, var(--hover-color), transparent 88%);
  color: var(--hover-color);
  font-size: 1.15rem;
}

.wlcm-problem h3 {
  margin: 0 0 6px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 0.98rem;
  font-weight: 600;
}

.wlcm-problem p {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ---- Benefits ---- */
.wlcm-benefits {
  background-color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
  /* border-top: 1px solid var(--border-color); */
  background: color-mix(in srgb, var(--card-bg), transparent 60%);
}

.wlcm-benefit {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--card-bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wlcm-benefit:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--main-color), transparent 55%);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--heading-color), transparent 93%);
}

.wlcm-benefit-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--hover-color), transparent 88%);
  color: var(--hover-color);
  font-size: 1.3rem;
}

.wlcm-benefit h3 {
  margin: 0 0 8px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 1.02rem;
  font-weight: 600;
}

.wlcm-benefit p {
  margin: 0;
  color: var(--muted-color);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* ---- Responsive (extended) ---- */
@media (max-width: 767px) {
  .wlcm-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


#features {
  background-color: #fff;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  border: var(--primary-color);
  border-radius: 8px !important;
  transition: all 0.3s ease;
}


.btn-outline-secondary {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 26, 51, 0.12);
}

.btn-primary:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 26, 51, 0.18);
}

.seg-new {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.seg-qualified {
  background-color: var(--secondary-color) !important;
  color: #fff;
}

.seg-won {
  background-color: var(--tertiary-color) !important;
  color: #fff;
}

/* ---- Dark mode: landing and demo experience ---- */
[data-theme="dark"] .wlcm-body {
  background: var(--background-color);
}

[data-theme="dark"] .wlcm-hero,
[data-theme="dark"] .wlcm-demo-page {
  background: #0a1930;
}

[data-bs-theme="dark"],
[data-theme="dark"] {
  --bg-body: #070E1A;
  --bg-card: #0E1B30;
  --primary-color: #F1F5F9;
  --secondary-color: #FF7E54;
  --tertiary-color: #34D399;
  --text-muted: #94A3B8;
  --border-color: #1E3354;
  --subtitle-color: #F1F5F9;
}

[data-theme="dark"] .wlcm-hero-bg {
  background:
    radial-gradient(circle at 86% 24%, rgba(48, 112, 202, .23) 0 13%, transparent 13.2%),
    radial-gradient(circle at 94% 30%, rgba(28, 67, 122, .36) 0 23%, transparent 23.2%),
    radial-gradient(circle at 9% 84%, rgba(255, 144, 19, .09) 0 12%, transparent 12.2%),
    linear-gradient(rgba(151, 191, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 191, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, auto, 28px 28px, 28px 28px;
}

[data-theme="dark"] .wlcm-hero::before {
  background: rgba(35, 82, 148, .20);
  border-color: rgba(133, 178, 255, .14);
}

[data-theme="dark"] .wlcm-hero::after {
  background: rgba(255, 144, 19, .04);
  border-color: rgba(255, 180, 102, .10);
}

[data-theme="dark"] .wlcm-team-story-video-card {
  border-color: #16345e;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .38), 0 0 0 1px rgba(133, 178, 255, .18);
}

[data-theme="dark"] .wlcm-problems,
[data-theme="dark"] #features {
  background: #081427;
}

[data-theme="dark"] .wlcm-benefits {
  background: #0b1930;
}

[data-theme="dark"] .wlcm-team-story {
  background: #0c1d38;
}

[data-theme="dark"] .wlcm-demo-preview {
  background: rgba(16, 36, 69, .76);
  border-color: rgba(133, 178, 255, .20);
}

[data-theme="dark"] .wlcm-demo-form input:not([type="checkbox"]),
[data-theme="dark"] .wlcm-demo-form select,
[data-theme="dark"] .wlcm-demo-form textarea {
  background: var(--input-bg);
  color: var(--default-color);
}

[data-theme="dark"] .wlcm-demo-form select option {
  background: var(--input-bg);
  color: var(--default-color);
}

[data-theme="dark"] .wlcm .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

[data-theme="dark"] .btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color);
}

[data-theme="dark"] .wlcm-cta-card {
  background: linear-gradient(135deg, #123c7d, #0b2859);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

[data-theme="dark"] .wlcm-cta-card {
  background: linear-gradient(135deg, #123c7d, #0b2859);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
}

[data-theme="dark"] .wlcm-collaboration-image,
[data-theme="dark"] .wlcm-team-story-image,
[data-theme="dark"] .wlcm-panel,
[data-theme="dark"] .wlcm-demo-card {
  box-shadow: 0 20px 48px rgba(0, 0, 0, .25);
}

@media (max-width: 767px) {
  .wlcm-nav-cta {
    display: none;
  }

  .wlcm-book-demo-float {
    position: fixed;
    right: 16px;
    bottom: 76px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 10px 24px rgba(1, 57, 131, .32);
    color: #fff;
    font-size: 1.15rem;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
  }

  .wlcm-book-demo-float:hover {
    background: var(--hover-color);
    color: #fff;
    transform: translateY(-3px);
  }

  .wlcm-back-to-top {
    right: 16px;
    bottom: 18px;
  }
}

/* Keep every landing-page card hover on the Tech7CRM orange accent. */
.wlcm-problem:hover,
.wlcm-benefit:hover,
.wlcm-feature:hover {
  border-color: var(--hover-color);
}


/* Logo For CSS  */

.wlcm-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.wlcm-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wlcm-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wlcm-brand-tech {
  color: var(--primary-color);
}

.wlcm-brand-seven {
  color: var(--secondary-color);
}

.wlcm-brand-crm {
  color: var(--tertiary-color)
}

.wlcm-brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: var(--subtitle-color);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}


.wlcm-demo-intro h1 {
  margin: 0 0 16px;
  color: var(--primary-color, #0B1A33);
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.wlcm-demo-intro h1 .wlcm-brand-seven {
  color: var(--secondary-color)
}

.wlcm-demo-intro h1 .wlcm-brand-crm {
  color: var(--tertiary-color)
}

.wlcm-footer-inner .wlcm-brand-name {
  font-size: 12px;
}

.wlcm-brand,
.wlcm-brand:hover,
.wlcm-brand:focus,
.wlcm-brand:active {
  text-decoration: none !important;
  opacity: 1 !important;
  color: inherit !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.wlcm-brand .wlcm-brand-logo {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: none !important;
  pointer-events: none;
}

.wlcm-brand:hover .wlcm-brand-text,
.wlcm-brand:hover .wlcm-brand-name span,
.wlcm-brand:hover .wlcm-brand-tagline {
  opacity: 1 !important;
  transition: none !important;
}