@import url("../assets/css/global.css");
@import url("../assets/css/components.css");


/* =========================================================
   HOME VARIABLES
========================================================= */

:root {
  --home-purple: #62528f;
  --home-purple-dark: #35275e;
  --home-purple-light: #e9e5fa;
  --home-blue: #344d87;
  --home-gold: #f0bd2d;
  --home-dark: #10111a;
  --home-ink: #172033;
  --home-muted: #687086;
  --home-line: #e8e5f0;
}


/* =========================================================
   HEADER HOMEPAGE OVERRIDE
========================================================= */

.home-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  transition:
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.home-page .site-header.scrolled {
  background: #62528f;
  box-shadow: 0 12px 35px rgba(32, 22, 70, .18);
}

.home-page .site-header.scrolled .nav-link {
  color: #fff !important;
}

.home-page .site-header.scrolled .navbar-toggler span {
  background: #fff;
}


/* =========================================================
   GLOBAL HOME
========================================================= */

.home-page {
  background: #fff;
}

.home-page main {
  overflow: hidden;
}

.section {
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .14em;

  color: var(--home-purple);

  text-transform: uppercase;
}

.section-kicker::before {
  content: "";

  width: 24px;
  height: 2px;

  background: var(--home-gold);
}

.large-heading,
.section-heading-row h2,
.center-heading h2,
.work-heading h2 {
  letter-spacing: -.045em;
}

.large-heading span,
.section-heading-row h2 span,
.center-heading h2 span,
.work-heading h2 span,
.featured-solution h2 span,
.why-section h2 span,
.case-content h2 span,
.audit-content h2 span,
.success-content h2 span,
.faq-section h2 span {
  color: var(--home-purple);
}


/* =========================================================
   HERO
========================================================= */

.nwspl-hero {
  position: relative;

  min-height: 760px;

  padding:
    180px 0
    100px;

  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(98, 82, 143, .18),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 75%,
      rgba(240, 189, 45, .12),
      transparent 22%
    ),
    linear-gradient(
      135deg,
      #ffffff,
      #f6f4fb
    );

  overflow: hidden;
}

.hero-glow {
  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  filter: blur(70px);

  opacity: .35;

  pointer-events: none;
}

.glow-one {
  top: 5%;
  right: 8%;

  background: #8d78d5;
}

.glow-two {
  left: -10%;
  bottom: -15%;

  background: #f0bd2d;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 9px 14px;

  border: 1px solid rgba(98, 82, 143, .14);

  border-radius: 100px;

  background: rgba(255, 255, 255, .65);

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .1em;

  color: var(--home-purple);
}

.hero-kicker span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--home-gold);
}

.nwspl-hero h1 {
  max-width: 850px;

  margin-top: 25px;

  font-size:
    clamp(3rem, 5.3vw, 5.5rem);

  line-height: 1.02;

  letter-spacing: -.06em;

  color: var(--home-ink);
}

.nwspl-hero h1 > span {
  color: var(--home-purple);
}

.nwspl-hero h1 strong {
  display: inline-block;

  min-height: 1.1em;

  color: var(--home-blue);
}

.hero-description {
  max-width: 650px;

  margin-top: 26px;

  font-size: 1.05rem;

  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  padding: 16px 22px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--home-purple),
      #7866b3
    );

  color: #fff;

  font-weight: 800;

  box-shadow:
    0 16px 30px
    rgba(98, 82, 143, .24);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.hero-primary-btn:hover {
  color: #fff;

  transform: translateY(-4px);

  box-shadow:
    0 22px 38px
    rgba(98, 82, 143, .32);
}

.hero-primary-btn span {
  font-size: 1.25rem;
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 22px;

  border: 1px solid var(--home-purple);

  border-radius: 12px;

  color: var(--home-purple);

  font-weight: 800;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.hero-secondary-btn:hover {
  background: var(--home-purple);

  color: #fff;

  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-top: 45px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  margin-left: -8px;

  border: 3px solid #fff;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      var(--home-purple),
      var(--home-blue)
    );

  color: #fff;

  font-size: .6rem;
  font-weight: 800;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust strong {
  display: block;

  font-size: .8rem;
}

.hero-trust p {
  margin: 2px 0 0;

  font-size: .72rem;
}


/* =========================================================
   HERO DASHBOARD
========================================================= */

.hero-dashboard {
  position: relative;

  max-width: 530px;

  margin: auto;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, .7);

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .68);

  backdrop-filter: blur(18px);

  box-shadow:
    0 30px 70px
    rgba(40, 30, 80, .14);

  animation:
    dashboardFloat
    6s ease-in-out
    infinite;
}

.dashboard-top-card {
  width: 190px;

  padding: 18px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      var(--home-purple),
      #7c68b9
    );

  color: #fff;
}

.dashboard-label {
  font-size: .65rem;

  opacity: .8;
}

.growth-number {
  margin-top: 8px;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 2rem;

  font-weight: 700;
}

.growth-caption {
  font-size: .68rem;
}

.dashboard-main {
  margin-top: 18px;

  padding: 22px;

  border: 1px solid #eeeaf5;

  border-radius: 24px;

  background: #fff;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header span:first-child {
  display: block;

  font-size: .68rem;

  color: var(--home-muted);
}

.dashboard-header strong {
  display: block;

  margin-top: 3px;

  font-size: .9rem;
}

.live-dot {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  padding: 6px 9px;

  border-radius: 100px;

  background: #f1eff8;

  color: var(--home-purple);

  font-size: .62rem;
  font-weight: 800;
}

.chart-area {
  height: 200px;

  margin-top: 15px;
}

.chart-area svg {
  width: 100%;
  height: 100%;
}

.dashboard-bottom {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;
}

.dashboard-bottom div {
  padding: 14px;

  border-radius: 14px;

  background: #f8f7fb;
}

.dashboard-bottom span {
  display: block;

  font-size: .62rem;

  color: var(--home-muted);
}

.dashboard-bottom strong {
  display: block;

  margin-top: 4px;

  font-size: 1.05rem;

  color: var(--home-ink);
}

.floating-metric {
  position: absolute;

  z-index: 3;

  padding: 14px 16px;

  border-radius: 16px;

  background: #fff;

  box-shadow:
    0 18px 35px
    rgba(40, 30, 80, .14);
}

.floating-metric span,
.floating-metric small {
  display: block;

  font-size: .62rem;

  color: var(--home-muted);
}

.floating-metric strong {
  display: block;

  margin: 4px 0;

  font-size: 1.25rem;

  color: var(--home-purple);
}

.metric-left {
  left: -65px;
  bottom: 80px;
}

.metric-right {
  right: -55px;
  top: 105px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  padding: 24px 0;

  background: #12131b;

  color: #fff;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.trust-title {
  font-size: .66rem;

  font-weight: 800;

  letter-spacing: .12em;

  color: rgba(255, 255, 255, .6);
}

.trust-items {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.trust-items span {
  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: .75rem;

  letter-spacing: .08em;
}

.trust-items i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--home-gold);
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
  padding: 120px 0;
}

.large-heading {
  max-width: 800px;

  font-size:
    clamp(2.5rem, 4.2vw, 4.4rem);
}

.large-text {
  max-width: 500px;

  font-size: 1rem;

  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-top: 18px;

  font-size: .82rem;
  font-weight: 800;

  color: var(--home-purple);
}

.text-link span {
  font-size: 1.2rem;

  transition:
    transform .25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.intro-stats {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  margin-top: 70px;

  border-top:
    1px solid var(--home-line);

  border-bottom:
    1px solid var(--home-line);
}

.intro-stats > div {
  padding: 32px 24px;

  border-right:
    1px solid var(--home-line);
}

.intro-stats > div:last-child {
  border-right: 0;
}

.intro-stats strong {
  display: block;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 2.1rem;

  color: var(--home-purple);
}

.intro-stats span {
  font-size: .72rem;

  color: var(--home-muted);
}


/* =========================================================
   SERVICE TABS
========================================================= */

.services-tab-section {
  padding: 110px 0;

  background:
    linear-gradient(
      135deg,
      #f7f6fb,
      #eeecf7
    );
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 55px;
}

.section-heading-row h2 {
  max-width: 700px;
}

.section-heading-row p {
  max-width: 420px;

  margin: 0;
}

.services-tab-layout {
  display: grid;

  grid-template-columns:
    minmax(280px, .75fr)
    1.45fr;

  min-height: 590px;

  overflow: hidden;

  border-radius: 32px;

  background: #fff;

  box-shadow:
    0 25px 70px
    rgba(38, 29, 68, .08);
}

.service-tabs {
  padding: 20px;

  background: #0d0e14;
}

.service-tab {
  width: 100%;

  display: grid;

  grid-template-columns:
    40px
    1fr
    25px;

  align-items: center;

  gap: 10px;

  padding: 22px 18px;

  border: 0;

  border-radius: 16px;

  background: transparent;

  color: rgba(255, 255, 255, .78);

  text-align: left;

  transition:
    background .3s ease,
    transform .3s ease,
    color .3s ease;
}

.service-tab:hover {
  transform: translateX(4px);

  color: #fff;
}

.service-tab.active {
  background:
    linear-gradient(
      135deg,
      #5d4ab3,
      #7867c6
    );

  color: #fff;
}

.tab-number {
  font-size: .65rem;

  color: rgba(255, 255, 255, .5);
}

.service-tab.active .tab-number {
  color: rgba(255, 255, 255, .8);
}

.service-tab > span:nth-child(2) {
  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 1rem;

  font-weight: 600;
}

.service-tab small {
  display: block;

  margin-top: 4px;

  font-family:
    Manrope,
    sans-serif;

  font-size: .62rem;

  font-weight: 400;

  opacity: .55;
}

.service-tab b {
  font-size: 1.1rem;
}

.service-display {
  position: relative;

  padding:
    60px
    55px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(98, 82, 143, .11),
      transparent 25%
    ),
    #fff;

  overflow: hidden;
}

.service-display-top {
  max-width: 550px;
}

.service-display-top > span {
  display: block;

  margin-bottom: 15px;

  font-size: .68rem;
  font-weight: 800;

  letter-spacing: .12em;

  color: var(--home-purple);
}

.service-display h3 {
  font-size:
    clamp(2rem, 3vw, 3.3rem);

  letter-spacing: -.04em;
}

.service-display p {
  max-width: 600px;

  margin-top: 20px;
}

.service-feature-list {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 14px;

  margin:
    28px 0;

  padding: 0;

  list-style: none;
}

.service-feature-list li {
  position: relative;

  padding-left: 25px;

  font-size: .78rem;

  color: var(--home-ink);
}

.service-feature-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  display: grid;
  place-items: center;

  width: 17px;
  height: 17px;

  border-radius: 50%;

  background: var(--home-purple);

  color: #fff;

  font-size: .6rem;
}

.service-learn-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  font-size: .78rem;
  font-weight: 800;

  color: var(--home-ink);

  border-bottom:
    2px solid var(--home-purple);
}

.service-stat-card {
  position: absolute;

  right: 45px;
  bottom: 45px;

  width: 210px;

  padding: 22px;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #faf9fd,
      #eeebf7
    );

  text-align: center;
}

.circle-stat {
  display: grid;
  place-items: center;

  width: 125px;
  height: 125px;

  margin: auto;

  border: 1px solid #dcd6ee;

  border-radius: 50%;

  background: #fff;
}

.circle-stat strong {
  display: block;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 2rem;
}

.circle-stat span {
  color: var(--home-purple);
}

.service-stat-card p {
  margin: 16px 0 0;

  font-size: .67rem;

  line-height: 1.6;
}


/* =========================================================
   ALL SERVICES
========================================================= */

.all-services-section {
  padding: 120px 0;
}

.center-heading {
  max-width: 750px;

  margin:
    0 auto
    55px;

  text-align: center;
}

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.premium-service-card {
  position: relative;

  min-height: 290px;

  padding: 30px;

  border:
    1px solid var(--home-line);

  border-radius: 22px;

  background: #fff;

  overflow: hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.premium-service-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(98, 82, 143, .35);

  box-shadow:
    0 22px 45px
    rgba(39, 31, 68, .1);
}

.service-icon {
  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  margin-bottom: 24px;

  border-radius: 15px;

  background: #f0edf9;

  color: var(--home-purple);

  font-size: 1.35rem;
}

.premium-service-card > span {
  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .1em;

  color: var(--home-purple);
}

.premium-service-card h3 {
  margin-top: 10px;

  font-size: 1.35rem;
}

.premium-service-card p {
  font-size: .78rem;
}

.premium-service-card b {
  position: absolute;

  left: 30px;
  bottom: 28px;

  font-size: .72rem;

  color: var(--home-purple);
}

.featured-service {
  background:
    linear-gradient(
      145deg,
      var(--home-purple-dark),
      var(--home-purple)
    );

  border: 0;

  color: #fff;
}

.featured-service p {
  color: rgba(255, 255, 255, .65);
}

.featured-service > span,
.featured-service b {
  color: #f4cf5d;
}

.featured-service .service-icon {
  background:
    rgba(255, 255, 255, .13);

  color: #fff;
}


/* =========================================================
   FEATURED SOLUTION
========================================================= */

.featured-solution {
  padding-top: 40px;
}

.featured-solution-box {
  padding: 75px;

  border-radius: 36px;

  background:
    linear-gradient(
      135deg,
      #f0eef8,
      #e5e2f3
    );
}

.featured-solution h2 {
  max-width: 560px;

  font-size:
    clamp(2.3rem, 4vw, 4rem);

  letter-spacing: -.05em;
}

.featured-solution p {
  max-width: 520px;

  margin:
    22px 0
    28px;
}

.feature-checks {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.feature-checks span {
  padding: 8px 12px;

  border-radius: 100px;

  background:
    rgba(255, 255, 255, .7);

  font-size: .68rem;

  color: var(--home-purple);
}

.website-visual {
  position: relative;

  padding: 22px;

  border-radius: 25px;

  background: #fff;

  box-shadow:
    0 25px 50px
    rgba(45, 35, 80, .12);
}

.browser-top {
  display: flex;

  gap: 6px;

  padding-bottom: 16px;

  border-bottom:
    1px solid var(--home-line);
}

.browser-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ded9e9;
}

.website-layout {
  display: grid;

  grid-template-columns:
    90px 1fr;

  min-height: 320px;

  margin-top: 15px;

  border-radius: 15px;

  overflow: hidden;

  background: #f7f6fa;
}

.website-sidebar {
  display: flex;
  flex-direction: column;

  gap: 20px;

  padding: 20px 14px;

  background: #10111a;

  color: #fff;
}

.website-sidebar b {
  margin-bottom: 15px;

  font-size: .65rem;
}

.website-sidebar span {
  width: 70%;

  height: 7px;

  border-radius: 10px;

  background:
    rgba(255, 255, 255, .2);
}

.website-content {
  padding: 25px;
}

.website-chart {
  height: 130px;

  border-radius: 16px;

  background:
    linear-gradient(
      150deg,
      #6c58b5,
      #9b8bd4
    );
}

.website-cards {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 12px;

  margin-top: 15px;
}

.website-cards div {
  height: 70px;

  border-radius: 12px;

  background: #fff;
}

.website-float {
  position: absolute;

  right: -20px;
  bottom: 30px;

  padding: 15px;

  border-radius: 15px;

  background: #11121a;

  color: #fff;

  box-shadow:
    0 18px 35px
    rgba(0, 0, 0, .15);
}

.website-float strong {
  display: block;

  color: #f4cf5d;
}

.website-float span {
  font-size: .62rem;

  opacity: .65;
}


/* =========================================================
   PROCESS
========================================================= */

.growth-process-section {
  padding: 120px 0;

  background: #10111a;

  color: #fff;
}

.growth-process-section .section-kicker {
  color: #f0bd2d;
}

.growth-process-section .center-heading h2 {
  color: #fff;
}

.growth-process-section .center-heading h2 span {
  color: #c3b8ee;
}

.growth-timeline {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 15px;

  margin-top: 65px;
}

.timeline-item {
  position: relative;

  padding: 28px 20px;

  border-top:
    1px solid rgba(255, 255, 255, .15);
}

.timeline-item::before {
  content: "";

  position: absolute;

  top: -5px;
  left: 0;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--home-gold);
}

.timeline-item > span {
  display: block;

  margin-bottom: 30px;

  color: #b8abdd;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 1.2rem;
}

.timeline-item h3 {
  font-size: 1.05rem;
}

.timeline-item p {
  font-size: .72rem;

  color:
    rgba(255, 255, 255, .55);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
  padding: 120px 0;
}

.why-section h2 {
  max-width: 550px;

  font-size:
    clamp(2.4rem, 4vw, 4rem);

  letter-spacing: -.05em;
}

.why-description {
  max-width: 450px;

  margin:
    20px 0;
}

.why-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;
}

.why-card {
  min-height: 220px;

  padding: 27px;

  border:
    1px solid var(--home-line);

  border-radius: 22px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card.active {
  background:
    linear-gradient(
      135deg,
      var(--home-purple),
      #7561b6
    );

  color: #fff;
}

.why-card > span {
  display: block;

  margin-bottom: 45px;

  color: var(--home-gold);

  font-size: .72rem;
  font-weight: 800;
}

.why-card h3 {
  font-size: 1.1rem;
}

.why-card p {
  margin: 0;

  font-size: .72rem;
}

.why-card.active p {
  color:
    rgba(255, 255, 255, .65);
}


/* =========================================================
   IMPACT
========================================================= */

.impact-section {
  padding: 110px 0;

  background:
    linear-gradient(
      135deg,
      #5d4a9f,
      #312651
    );

  color: #fff;
}

.impact-top {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 40px;
}

.impact-top > div {
  max-width: 700px;
}

.impact-top > div > span {
  font-size: .68rem;
  font-weight: 800;

  letter-spacing: .12em;

  color: #f0bd2d;
}

.impact-top h2 {
  margin-top: 15px;

  color: #fff;

  font-size:
    clamp(2.5rem, 4vw, 4rem);
}

.impact-top em {
  color: #d4c9ff;

  font-style: normal;
}

.impact-top p {
  max-width: 400px;

  color:
    rgba(255, 255, 255, .65);
}

.impact-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;

  margin-top: 70px;
}

.impact-grid > div {
  padding-top: 25px;

  border-top:
    1px solid rgba(255, 255, 255, .2);
}

.impact-grid strong {
  display: block;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size:
    clamp(2.2rem, 4vw, 3.8rem);

  color: #fff;
}

.impact-grid span {
  font-size: .7rem;

  color:
    rgba(255, 255, 255, .6);
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries-section {
  padding: 120px 0;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}

.industry-tags span {
  padding: 16px 23px;

  border:
    1px solid var(--home-line);

  border-radius: 100px;

  background: #fff;

  font-size: .75rem;
  font-weight: 700;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.industry-tags span:hover {
  background: var(--home-purple);

  color: #fff;

  transform: translateY(-3px);
}


/* =========================================================
   WORK
========================================================= */

.work-section {
  padding: 100px 0;

  background: #f8f7fb;
}

.work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 45px;
}

.portfolio-grid {
  display: grid;

  grid-template-columns:
    1.2fr .9fr .9fr;

  gap: 18px;
}

.portfolio-card {
  overflow: hidden;

  border-radius: 22px;

  background: #fff;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.portfolio-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 20px 40px
    rgba(35, 28, 55, .1);
}

.portfolio-visual {
  position: relative;

  height: 300px;

  overflow: hidden;
}

.visual-purple {
  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      #5d4ba1,
      #8b7ac9
    );
}

.visual-dark {
  display: grid;
  place-items: center;

  background: #11121a;
}

.visual-light {
  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      #e9e6f5,
      #f7f6fb
    );
}

.mockup-window {
  width: 75%;
  height: 65%;

  padding: 15px;

  border-radius: 15px;

  background: #fff;

  box-shadow:
    0 20px 40px
    rgba(0, 0, 0, .16);
}

.mockup-window span {
  display: block;

  width: 35%;

  height: 8px;

  border-radius: 10px;

  background: #dcd7e8;
}

.mockup-window div {
  height: 75%;

  margin-top: 22px;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #e5e0f4,
      #f6f4fa
    );
}

.metric-display {
  display: grid;
  place-items: center;

  width: 170px;
  height: 170px;

  border:
    1px solid rgba(255, 255, 255, .25);

  border-radius: 50%;

  color: #fff;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 3rem;
}

.social-mock {
  display: grid;

  grid-template-columns:
    repeat(3, 60px);

  gap: 10px;
}

.social-mock span {
  height: 140px;

  border-radius: 10px;

  background: #fff;

  box-shadow:
    0 10px 25px
    rgba(40, 30, 80, .08);
}

.portfolio-info {
  padding: 25px;
}

.portfolio-info > span {
  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .1em;

  color: var(--home-purple);
}

.portfolio-info h3 {
  margin:
    9px 0
    16px;

  font-size: 1.2rem;
}

.portfolio-info strong {
  font-size: .72rem;

  color: var(--home-muted);
}


/* =========================================================
   CASE STUDY
========================================================= */

.case-spotlight {
  padding: 110px 0;
}

.case-box {
  display: grid;

  grid-template-columns:
    1.2fr .8fr;

  min-height: 440px;

  overflow: hidden;

  border-radius: 30px;

  background: #11121a;

  color: #fff;
}

.case-content {
  padding: 70px;
}

.case-content .section-kicker {
  color: #f0bd2d;
}

.case-content h2 {
  max-width: 650px;

  color: #fff;

  font-size:
    clamp(2.2rem, 4vw, 3.7rem);
}

.case-content h2 span {
  color: #c9bcf5;
}

.case-content p {
  max-width: 580px;

  color:
    rgba(255, 255, 255, .6);
}

.dark-link {
  margin-top: 20px;

  border-color:
    rgba(255, 255, 255, .35);

  color: #fff;
}

.dark-link:hover {
  background: #fff;

  color: #11121a;
}

.case-results {
  display: grid;

  grid-template-columns:
    1fr;

  align-content: center;

  padding: 45px;

  background:
    linear-gradient(
      145deg,
      #62528f,
      #44346f
    );
}

.case-results > div {
  padding: 28px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, .16);
}

.case-results > div:last-child {
  border-bottom: 0;
}

.case-results strong {
  display: block;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 2.3rem;

  color: #f6d264;
}

.case-results span {
  font-size: .72rem;

  color:
    rgba(255, 255, 255, .7);
}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-section {
  padding: 110px 0;

  background: #f8f7fb;
}

.expertise-layout {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

.expertise-column {
  padding: 40px;

  border-radius: 24px;

  background: #fff;

  border:
    1px solid var(--home-line);
}

.expertise-column > span {
  display: block;

  margin-bottom: 25px;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .12em;

  color: var(--home-purple);
}

.tool-list {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.tool-list b {
  padding: 12px 15px;

  border-radius: 10px;

  background: #f5f3fa;

  font-size: .72rem;

  font-weight: 700;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
  padding: 120px 0;
}

.testimonial-wrapper {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 80px;

  align-items: center;
}

.testimonial-intro h2 {
  font-size:
    clamp(2.2rem, 4vw, 3.8rem);

  letter-spacing: -.05em;
}

.testimonial-slider {
  position: relative;

  min-height: 360px;

  padding: 50px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #f0edf8,
      #e7e2f2
    );
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;

  animation:
    testimonialFade
    .45s ease;
}

.quote-mark {
  font-family:
    Georgia,
    serif;

  font-size: 5rem;

  line-height: .6;

  color: var(--home-purple);
}

.testimonial-slide > p {
  margin-top: 20px;

  font-size: 1.08rem;

  line-height: 1.8;

  color: var(--home-ink);
}

.testimonial-person {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 30px;
}

.person-avatar {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--home-purple);

  color: #fff;

  font-size: .75rem;

  font-weight: 800;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  font-size: .75rem;
}

.testimonial-person span {
  font-size: .65rem;

  color: var(--home-muted);
}

.testimonial-controls {
  position: absolute;

  left: 50px;
  right: 50px;
  bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-controls button {
  width: 38px;
  height: 38px;

  border:
    1px solid rgba(98, 82, 143, .2);

  border-radius: 50%;

  background: #fff;

  color: var(--home-purple);

  transition:
    transform .25s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.08);
}

.testimonial-dots {
  display: flex;

  gap: 6px;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #c5bddb;
}

.testimonial-dots span.active {
  width: 24px;

  border-radius: 10px;

  background: var(--home-purple);
}


/* =========================================================
   INSIGHTS
========================================================= */

.insights-section {
  padding: 110px 0;

  background: #fafafa;
}

.insights-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.insight-card {
  padding-bottom: 25px;

  border-radius: 20px;

  background: #fff;

  overflow: hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.insight-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 40px
    rgba(40, 30, 70, .09);
}

.insight-image {
  position: relative;

  height: 210px;

  display: flex;
  align-items: end;

  padding: 20px;
}

.insight-image span {
  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 3rem;

  color: rgba(255, 255, 255, .85);
}

.image-one {
  background:
    linear-gradient(
      135deg,
      #3d3265,
      #7865b7
    );
}

.image-two {
  background:
    linear-gradient(
      135deg,
      #11121a,
      #43435a
    );
}

.image-three {
  background:
    linear-gradient(
      135deg,
      #d9d4ec,
      #7d6ab9
    );
}

.insight-card small,
.insight-card h3,
.insight-card a {
  margin-left: 25px;
  margin-right: 25px;
}

.insight-card small {
  display: block;

  margin-top: 22px;

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: .1em;

  color: var(--home-purple);
}

.insight-card h3 {
  margin-top: 10px;

  font-size: 1.1rem;
}

.insight-card a {
  display: inline-block;

  margin-top: 8px;

  font-size: .7rem;

  font-weight: 800;

  color: var(--home-purple);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
  padding: 120px 0;
}

.faq-section h2 {
  font-size:
    clamp(2.2rem, 4vw, 3.8rem);

  letter-spacing: -.05em;
}

.faq-list {
  border-top:
    1px solid var(--home-line);
}

.faq-item {
  border-bottom:
    1px solid var(--home-line);
}

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 23px 0;

  border: 0;

  background: transparent;

  text-align: left;

  font-family:
    "Space Grotesk",
    sans-serif;

  font-size: 1rem;

  font-weight: 600;
}

.faq-question span {
  font-size: 1.3rem;

  color: var(--home-purple);

  transition:
    transform .3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows .35s ease;
}

.faq-answer p {
  overflow: hidden;

  margin: 0;

  font-size: .8rem;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 22px;
}


/* =========================================================
   AUDIT
========================================================= */

.audit-section {
  padding: 50px 0 110px;
}

.audit-box {
  display: grid;

  grid-template-columns:
    1.2fr .9fr auto;

  align-items: center;

  gap: 40px;

  padding: 55px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #f0eef9,
      #e8e4f5
    );
}

.audit-content h2 {
  max-width: 600px;

  margin-bottom: 12px;
}

.audit-content p {
  margin: 0;

  font-size: .82rem;
}

.audit-list {
  display: grid;

  gap: 10px;
}

.audit-list span {
  font-size: .72rem;

  color: var(--home-purple);
}

.audit-button {
  display: inline-flex;
  align-items: center;

  gap: 15px;

  padding: 16px 20px;

  border-radius: 12px;

  background: #11121a;

  color: #fff;

  font-size: .75rem;

  font-weight: 800;
}


/* =========================================================
   SUCCESS CTA
========================================================= */

.success-cta-section {
  padding: 40px 0 110px;
}

.success-cta {
  display: grid;

  grid-template-columns:
    1fr .9fr;

  align-items: center;

  gap: 50px;

  padding: 65px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      #d9d6ee,
      #efedf7
    );
}

.success-content h2 {
  max-width: 620px;

  font-size:
    clamp(2.2rem, 4vw, 3.8rem);

  letter-spacing: -.05em;
}

.success-points {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  margin-top: 24px;
}

.success-points span {
  font-size: .72rem;

  color: var(--home-purple);
}

.success-form {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 12px;

  padding: 10px;

  border-radius: 18px;

  background: #fff;

  box-shadow:
    12px 12px 0 #11121a;
}

.success-form input {
  min-width: 0;

  padding: 15px;

  border:
    1px solid var(--home-line);

  border-radius: 10px;

  outline: 0;
}

.success-form button {
  padding: 0 30px;

  border: 0;

  border-radius: 10px;

  background: #11121a;

  color: #fff;

  font-size: .7rem;

  font-weight: 800;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
  padding: 90px 0;

  background:
    linear-gradient(
      135deg,
      #62528f,
      #3d3068
    );
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.final-cta span {
  font-size: .65rem;

  font-weight: 800;

  letter-spacing: .12em;

  color: #f0bd2d;
}

.final-cta h2 {
  max-width: 750px;

  margin-top: 15px;

  color: #fff;

  font-size:
    clamp(2.5rem, 4vw, 4.2rem);

  letter-spacing: -.05em;
}

.final-cta h2 em {
  display: block;

  color: #d5caf8;

  font-style: normal;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  padding: 18px 22px;

  border-radius: 12px;

  background: #fff;

  color: var(--home-purple);

  font-size: .78rem;

  font-weight: 800;

  white-space: nowrap;

  transition:
    transform .3s ease;
}

.final-cta-button:hover {
  transform: translateY(-4px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-on-scroll {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity .7s ease,
    transform .7s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes dashboardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}

@keyframes testimonialFade {

  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .nwspl-hero {
    padding-top: 140px;
  }

  .hero-dashboard {
    max-width: 600px;
  }

  .metric-left {
    left: 0;
  }

  .metric-right {
    right: 0;
  }

  .trust-strip-inner,
  .section-heading-row,
  .impact-top,
  .work-heading,
  .final-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .intro-stats {
    grid-template-columns:
      1fr 1fr;
  }

  .intro-stats > div:nth-child(2) {
    border-right: 0;
  }

  .services-tab-layout {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    display: flex;

    overflow-x: auto;

    gap: 8px;
  }

  .service-tab {
    min-width: 240px;
  }

  .service-display {
    min-height: 620px;
  }

  .services-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .growth-timeline {
    grid-template-columns:
      1fr 1fr;
  }

  .impact-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .large-card {
    grid-column:
      span 2;
  }

  .case-box,
  .testimonial-wrapper,
  .success-cta {
    grid-template-columns: 1fr;
  }

  .expertise-layout {
    grid-template-columns: 1fr;
  }

  .audit-box {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .section {
    padding: 80px 0;
  }

  .nwspl-hero {
    min-height: auto;

    padding:
      130px 0
      75px;
  }

  .nwspl-hero h1 {
    font-size:
      clamp(2.6rem, 13vw, 4rem);
  }

  .hero-description {
    font-size: .92rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
  }

  .hero-dashboard {
    padding: 15px;
  }

  .dashboard-main {
    padding: 15px;
  }

  .metric-left,
  .metric-right {
    display: none;
  }

  .trust-items {
    gap: 12px;
  }

  .trust-items i {
    display: none;
  }

  .intro-section {
    padding: 85px 0;
  }

  .intro-stats {
    margin-top: 45px;
  }

  .intro-stats > div {
    padding: 22px 15px;
  }

  .intro-stats strong {
    font-size: 1.6rem;
  }

  .section-heading-row {
    gap: 20px;

    margin-bottom: 35px;
  }

  .service-display {
    padding: 35px 25px;

    min-height: 670px;
  }

  .service-feature-list {
    grid-template-columns: 1fr;
  }

  .service-stat-card {
    position: relative;

    right: auto;
    bottom: auto;

    width: 100%;

    margin-top: 30px;
  }

  .services-grid,
  .why-grid,
  .portfolio-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .featured-solution-box,
  .case-content,
  .testimonial-slider,
  .success-cta {
    padding: 35px 25px;
  }

  .website-layout {
    grid-template-columns:
      65px 1fr;
  }

  .website-content {
    padding: 15px;
  }

  .website-float {
    display: none;
  }

  .growth-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-left: 25px;
  }

  .impact-section {
    padding: 80px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;

    margin-top: 45px;
  }

  .impact-grid strong {
    font-size: 2rem;
  }

  .case-results {
    padding: 25px;
  }

  .testimonial-controls {
    left: 25px;
    right: 25px;
  }

  .audit-box {
    padding: 35px 25px;
  }

  .success-form {
    grid-template-columns: 1fr;

    box-shadow:
      7px 7px 0 #11121a;
  }

  .success-form button {
    min-height: 52px;
  }

  .final-cta {
    padding: 75px 0;
  }

  .final-cta-button {
    width: 100%;

    justify-content: center;
  }

}