@charset "UTF-8";
:root {
  --wl-bg-start: #FFFFFF;
  --wl-bg-end: #9B83FF;
  --wl-primary: #2D3B86;
  --wl-accent: #A3E635;
  --wl-text: #111827;
  --wl-text-light: #6B7280;
  --wl-radius: 16px;
  --wl-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= BASE ================= */
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--wl-text);
  margin: 0;
  background: linear-gradient(to right, var(--wl-bg-start), var(--wl-bg-end));
}

.wl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HERO ================= */
.wl-hero {
  padding: 50px 0;
}
.wl-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .wl-hero__inner {
    flex-direction: column;
    text-align: center;
  }
}
.wl-hero__content {
  flex: 1;
}
.wl-hero__eyebrow {
  font-size: 14px;
  color: var(--wl-text-light);
  margin-bottom: 12px;
}
.wl-hero__title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}
.wl-hero__desc {
  color: var(--wl-text-light);
  margin: 20px 0;
  max-width: 480px;
}
.wl-hero__actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .wl-hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.wl-hero__badge {
  background: white;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--wl-shadow);
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  color: linear-gradient(135deg, #004fff, #042c86);
}
.wl-hero__gradient-text {
  background: linear-gradient(135deg, #004fff, #042c86);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-hero__rating {
  margin-top: 20px;
  font-size: 14px;
  color: var(--wl-text-light);
}
.wl-hero__media {
  position: relative;
  flex: 1;
  height: 420px;
}
@media (max-width: 768px) {
  .wl-hero__media {
    height: 300px;
  }
}

/* ================= HIGHLIGHT ================= */
.wl-highlight {
  position: relative;
  display: inline-block;
  font-weight: inherit;
  z-index: 1;
}
.wl-highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 6px;
  height: 40%;
  background: #c9ff85;
  border-radius: 8px;
  z-index: -1;
}

/* ================= BUTTONS ================= */
.wl-btn {
  padding: 12px 20px;
  border-radius: var(--wl-radius);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.wl-btn--primary {
  background: var(--wl-primary);
  color: white;
}
.wl-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.wl-btn--secondary {
  background: #f3f4f6;
}
.wl-btn--secondary:hover {
  background: #e5e7eb;
}

/* ================= CARD STACK ================= */
.wl-card {
  width: 250px;
  border-radius: 12px;
  box-shadow: var(--wl-shadow);
  margin-right: 15px;
}
.wl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ================= STATS ================= */
.wl-stats {
  padding: 100px 0;
}
.wl-stats__header {
  text-align: center;
  margin-bottom: 30px;
}
.wl-stats__header h2 {
  font-size: 40px;
  font-weight: 700;
}
.wl-stats__header p {
  margin-top: 12px;
  color: var(--wl-text-light);
}
.wl-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .wl-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.wl-stat-card {
  padding: 20px;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.wl-stat-card h3 {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0;
}
.wl-stat-card p {
  font-weight: 600;
}
.wl-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Color variants */
.wl-stat-card--blue h3 {
  color: #155dfc;
}

.wl-stat-card--purple h3 {
  color: #9810fa;
}

.wl-stat-card--orange h3 {
  color: #dfdbdb;
}

.wl-stat-card--green h3 {
  color: #38c00a;
}

.wl-stat-card--teal h3 {
  color: #0092b8;
}

.wl-stat-card:nth-child(4),
.wl-stat-card:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .wl-stats__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  /* Top row */
  .wl-stat-card:nth-child(1),
  .wl-stat-card:nth-child(2),
  .wl-stat-card:nth-child(3) {
    grid-column: span 2;
  }
  /* Bottom row */
  .wl-stat-card:nth-child(4),
  .wl-stat-card:nth-child(5) {
    grid-column: span 3;
  }
}
.wl-stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* GLASS-LIKE BASE */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  font-size: 20px;
}

/* VARIANTS → LIGHT BACKGROUND + STRONG ICON */
.wl-stat-card__icon--blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.wl-stat-card__icon--purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.wl-stat-card__icon--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.wl-stat-card__icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.wl-stat-card__icon--teal {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
}

/* ================= FEATURES SECTION ================= */
.wl-features {
  padding: 40px 0;
  /* ---------- HEADER ---------- */
}
.wl-features__header {
  text-align: center;
  margin-bottom: 80px;
}
.wl-features__header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.wl-features__header p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--wl-text-light);
}
.wl-features {
  /* ---------- MAIN LAYOUT ---------- */
}
.wl-features__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .wl-features__content {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .wl-features__content {
    flex-direction: column;
  }
}
.wl-features {
  /* ---------- LEFT COLUMN ---------- */
}
.wl-features__left {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .wl-features__left {
    flex: 1;
    width: 100%;
  }
}
.wl-features {
  /* ---------- RIGHT COLUMN ---------- */
}
.wl-features__right {
  flex: 0 0 45%;
  position: relative;
}
@media (max-width: 768px) {
  .wl-features__right {
    width: 100%;
  }
}
.wl-features {
  /* ---------- MAIN IMAGE ---------- */
}
.wl-features__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ================= FEATURE ITEM ================= */
.wl-feature__tag {
  display: inline-block;
  background: #ede9fe;
  color: #7c3aed;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.wl-feature h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wl-feature p {
  font-size: 15px;
  color: var(--wl-text-light);
  max-width: 520px;
  line-height: 1.6;
}

/* ================= FLOATING CARDS ================= */
.wl-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--wl-shadow);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
  /* subtle elevation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wl-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.wl-floating {
  /* middle floating badge */
}
.wl-floating--middle {
  bottom: 18%;
  left: 0;
}
.wl-floating {
  /* bottom card */
}
.wl-floating--bottom {
  bottom: -12px;
  right: 10px;
}

/* ================= RESPONSIVE POLISH ================= */
@media (max-width: 768px) {
  .wl-features {
    padding: 80px 0;
  }
  .wl-features__header h2 {
    font-size: 32px;
  }
  .wl-feature h3 {
    font-size: 22px;
  }
  .wl-floating {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 16px;
  }
} /* ================= EXPERIENCE SECTION ================= */
@media (max-width: 768px) {
  .wl-experience {
    padding: 80px 0;
  }
}
.wl-experience {
  /* ---------- WRAPPER ---------- */
}
.wl-experience__wrapper {
  background: linear-gradient(135deg, #e9e4ff 0%, #cfc6f8 100%);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .wl-experience__wrapper {
    padding: 24px;
    border-radius: 20px;
  }
}
.wl-experience {
  /* ---------- HEADER ---------- */
}
.wl-experience__header {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .wl-experience__header {
    margin-bottom: 32px;
  }
}
.wl-experience__header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .wl-experience__header h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .wl-experience__header h2 {
    font-size: 28px;
  }
}
.wl-experience__header p {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 700px;
}
@media (max-width: 768px) {
  .wl-experience__header p {
    font-size: 14px;
  }
}
.wl-experience__tag {
  font-size: 12px;
  font-weight: 600;
  color: #ac57e9;
  letter-spacing: 1px;
}
.wl-experience {
  /* ---------- GRID ---------- */
}
.wl-experience__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 32px;
}
@media (max-width: 1024px) {
  .wl-experience__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .wl-experience__grid {
    gap: 20px;
  }
}
.wl-experience {
  /* ---------- RIGHT SIDE GRID ---------- */
}
.wl-experience__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .wl-experience__right {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================= CARDS ================= */
.wl-rating-card,
.wl-info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
@media (max-width: 768px) {
  .wl-rating-card,
  .wl-info-card {
    padding: 18px;
    border-radius: 16px;
  }
}
.wl-rating-card:hover,
.wl-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ================= RATING CARD ================= */
.wl-rating-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-rating-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wl-rating-card__top h3 {
  font-size: 48px;
  font-weight: 800;
  color: #2563eb;
}
@media (max-width: 768px) {
  .wl-rating-card__top h3 {
    font-size: 36px;
  }
}
.wl-rating-card__top span {
  font-size: 16px;
}
.wl-rating-card__top p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

/* ================= PROGRESS ================= */
.wl-progress__item {
  margin-bottom: 14px;
}
.wl-progress__item span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #374151;
}

.wl-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.wl-bar div {
  height: 100%;
  background: #2563eb;
  border-radius: 6px;
}

/* ================= INFO CARD ================= */
.wl-info-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  /* FULL WIDTH FIRST CARD */
}
.wl-info-card--full {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .wl-info-card--full {
    grid-column: span 1;
  }
}
.wl-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .wl-info-card h4 {
    font-size: 14px;
  }
}
.wl-info-card p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .wl-info-card p {
    font-size: 12px;
  }
}

/* ================= ICON ================= */
.wl-info-card__icon {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ICON COLORS */
.wl-info-card__icon--blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.wl-info-card__icon--purple {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.wl-info-card__icon--orange {
  background: #f8ede8;
  color: #f05907;
}

.wl-info-card__icon--green {
  background: #dbeafe;
  color: #38c00a;
}

.wl-info-card__icon--cyan {
  background: #cefafe;
  color: #0092b8;
}

/* ================= CALCULATOR ================= */
.wl-calculator {
  padding: 120px 0;
}
.wl-calculator__header {
  text-align: center;
  margin-bottom: 60px;
}
.wl-calculator__header h2 {
  font-size: 42px;
  font-weight: 800;
}
.wl-calculator__header p {
  margin-top: 10px;
  color: var(--wl-text-light);
}
.wl-calculator__content {
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .wl-calculator__content {
    flex-direction: column;
  }
}
.wl-calculator__inputs, .wl-calculator__results {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--wl-shadow);
}

/* ================= SLIDERS ================= */
.wl-slider {
  margin-bottom: 28px;
}
.wl-slider label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.wl-slider input[type=range] {
  width: 100%;
  appearance: none;
  height: 4px;
  background: #e5e7eb;
  border-radius: 4px;
  outline: none;
}
.wl-slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: #06b6d4;
  border-radius: 50%;
  cursor: pointer;
}

/* ================= RESULTS ================= */
.wl-result {
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 14px;
}
.wl-result strong {
  display: block;
  font-size: 20px;
  color: #06b6d4;
}
.wl-result--purple strong {
  color: #a855f7;
}

/* ================= ROI ================= */
.wl-roi {
  margin-top: 20px;
  background: #e0f2fe;
  padding: 16px;
  border-radius: 12px;
}
.wl-roi span {
  font-weight: bold;
}
.wl-roi p {
  font-size: 14px;
}

input[type=range]::-webkit-slider-thumb {
  background: #06b6d4;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.wl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 14px 0;
}
.wl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-header__logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.wl-header {
  /* NAV */
}
.wl-header__nav {
  display: flex;
  gap: 32px;
}
.wl-header__nav a {
  font-size: 15px;
  color: #111;
  text-decoration: none;
}
@media (max-width: 992px) {
  .wl-header__nav {
    display: none;
  }
}
.wl-header {
  /* ACTIONS */
}
.wl-header__actions {
  display: flex;
  gap: 12px;
}
@media (max-width: 992px) {
  .wl-header__actions {
    display: none;
  }
}
.wl-header {
  /* TOGGLE */
}
.wl-header__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.wl-header__toggle span {
  width: 24px;
  height: 2px;
  background: #000;
}
@media (max-width: 992px) {
  .wl-header__toggle {
    display: flex;
  }
}

/* BUTTONS */
.wl-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}
.wl-btn--primary {
  background: #2f3f97;
  color: #fff;
}
.wl-btn--outline {
  border: 1px solid #2f3f97;
  color: #2f3f97;
}

/* MOBILE MENU */
.wl-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s;
}
.wl-mobile.active {
  right: 0;
}

.wl-footer-card {
  padding: 100px 0;
  background: linear-gradient(135deg, #ede9fe, #c4b5fd);
}
.wl-footer-card__inner {
  padding: 60px 40px;
}

.wl-footer-card__cta {
  text-align: center;
  margin-bottom: 60px;
}
.wl-footer-card__cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.wl-footer-card__cta {
  text-align: center;
  margin-bottom: 60px;
}
.wl-footer-card__cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.wl-footer-card__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .wl-footer-card__top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.wl-footer-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wl-footer-card__brand img {
  height: 40px;
}

.wl-footer-card__accred {
  text-align: right;
}
.wl-footer-card__accred div {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.wl-footer-card__accred div img {
  height: 40px;
}
@media (max-width: 1024px) {
  .wl-footer-card__accred {
    text-align: center;
  }
  .wl-footer-card__accred div {
    justify-content: center;
  }
}

.wl-footer-card__accred {
  text-align: right;
}
.wl-footer-card__accred div {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.wl-footer-card__accred div img {
  height: 40px;
}
@media (max-width: 1024px) {
  .wl-footer-card__accred {
    text-align: center;
  }
  .wl-footer-card__accred div {
    justify-content: center;
  }
}

.wl-footer-card__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 768px) {
  .wl-footer-card__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.wl-footer-card__divider {
  width: "100%";
  border-top-width: 1px;
  border-top-color: #dbeafe;
  height: 1px;
}
@media (max-width: 768px) {
  .wl-footer-card__divider {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.wl-logo-cut {
  display: flex;
  justify-content: center;
  height: 70%;
  overflow: hidden;
}
.wl-logo-cut img {
  width: 60%;
  opacity: 0.1;
  position: relative;
  bottom: 10px;
}

/*# sourceMappingURL=main.css.map */
