/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
  --l6-navy: #071f3a;
  --l6-navy-deep: #0c243d;
  --l6-gold: #d9a441;
  --l6-gold-light: #edb84e;
  --l6-ink: #172d45;
  --l6-muted: #5f6f82;
  --l6-muted-light: #738195;
  --l6-surface-warm: #f7f4ee;
  --l6-surface-cool: #eef6fc;
  --l6-surface-blue: #eaf4fb;
  --l6-white: #ffffff;
  --l6-radius: 18px;
  --l6-radius-large: 22px;
  --l6-content-width: 1240px;
  --l6-wide-width: 2000px;
  --l6-font-serif: Georgia, "Times New Roman", serif;
  --l6-font-sans: Arial, Helvetica, sans-serif;
}

/* =========================================================
   SHARED NORMALIZATION
   ========================================================= */

.l6-hero,
.l6-pressure,
.l6-wheel,
.l6-service,
.l6-approach,
.l6-exists,
.l6-final-cta,
.l6-hero *,
.l6-pressure *,
.l6-wheel *,
.l6-service *,
.l6-approach *,
.l6-exists *,
.l6-final-cta * {
  box-sizing: border-box;
}

.l6-pressure__inner,
.l6-wheel__inner,
.l6-service__inner,
.l6-approach__inner,
.l6-final-cta__inner {
  width: 100%;
  max-width: var(--l6-content-width);
  margin: 0 auto;
}

.l6-pressure__eyebrow,
.l6-wheel__eyebrow,
.l6-service__eyebrow,
.l6-approach__eyebrow,
.l6-exists__eyebrow,
.l6-final-cta__eyebrow,
.l6-hero__eyebrow,
.l6-hero__card-label {
  color: var(--l6-gold) !important;
}

.l6-pressure__title,
.l6-wheel__title,
.l6-service__title,
.l6-approach__title,
.l6-exists__title,
.l6-final-cta__title,
.l6-hero__title,
.l6-hero__card-title,
.l6-exists__quote,
.l6-approach__step-title {
  font-family: var(--l6-font-serif);
  letter-spacing: -0.025em;
  font-weight: 700;
}

.l6-wheel__button,
.l6-final-cta__button,
.l6-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none !important;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.l6-wheel__button:hover,
.l6-final-cta__button:hover,
.l6-hero__button:hover {
  transform: translateY(-2px);
}

/* =========================================================
   FLATSOME WRAPPER OVERRIDES - HOMEPAGE HERO ONLY
   ========================================================= */

.home .banner-layers.container {
  max-width: var(--l6-wide-width);
}

/* =========================================================
   HERO
   ========================================================= */

.l6-hero {
  width: 100%;
  max-width: var(--l6-wide-width);
  min-height: 720px;
  margin: 0 auto;
  padding: 80px 55px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 70px;
  color: var(--l6-white);
}

.l6-hero__left {
  max-width: 780px;
  justify-self: start;
}

.l6-hero__left,
.l6-hero__left *,
.l6-hero__card-label,
.l6-hero__card-title,
.l6-hero__card-text,
.l6-hero__quote {
  text-align: left;
}

.l6-hero__eyebrow {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.l6-hero__title {
  margin: 0 0 22px;
  color: var(--l6-white);
  font-size: clamp(52px, 5.3vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.l6-hero__title-accent {
  color: var(--l6-gold);
}

.l6-hero__description {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--l6-white);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.55;
}

.l6-hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}

.l6-hero__button {
  min-width: 315px;
  min-height: 48px;
  padding: 12px 30px;
  border: 1px solid var(--l6-white);
  background: var(--l6-gold);
  color: #111111 !important;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.l6-hero__button:hover {
  background: var(--l6-gold-light);
  color: #111111 !important;
}

.l6-hero__text-link {
  color: var(--l6-white) !important;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-decoration: none !important;
}

.l6-hero__text-link span {
  margin-left: 12px;
  color: var(--l6-gold);
  font-size: 28px;
  vertical-align: -2px;
}

.l6-hero__card {
  padding: 48px 46px 42px;
  border-radius: var(--l6-radius-large);
  background: rgba(5, 20, 39, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
}

.l6-hero__card-label {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-hero__card-title {
  margin: 0 0 22px;
  color: var(--l6-white);
  font-size: clamp(42px, 3.4vw, 62px);
  line-height: 1.05;
}

.l6-hero__card-text {
  margin: 0;
  color: var(--l6-white);
  font-size: 16px;
  line-height: 1.65;
  text-transform: uppercase;
}

.l6-hero__rule {
  width: 64px;
  height: 2px;
  margin: 36px 0 27px;
  background: var(--l6-gold);
}

.l6-hero__quote {
  margin: 0;
  color: var(--l6-white);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

/* =========================================================
   PRESSURE / PROBLEM SECTION
   ========================================================= */

.l6-pressure {
  width: 100%;
  padding: 95px 24px 105px;
  background: var(--l6-surface-warm);
  color: #0a2038;
}

.l6-pressure__intro {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.l6-pressure__eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.l6-pressure__title {
  margin: 0 0 24px;
  color: var(--l6-navy);
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1.08;
  text-align: center;
}

.l6-pressure__description {
  max-width: 700px;
  margin: 0 auto;
  color: #5e6a78;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.l6-pressure__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.l6-pressure__card {
  min-height: 205px;
  padding: 34px 30px 31px;
  border: 1px solid rgba(9, 31, 55, 0.04);
  border-radius: var(--l6-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 35px rgba(7, 31, 58, 0.035);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.l6-pressure__card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.28);
  box-shadow: 0 18px 42px rgba(7, 31, 58, 0.08);
}

.l6-pressure__icon {
  width: 34px;
  height: 34px;
  margin: 0 0 19px;
  color: var(--l6-navy);
}

.l6-pressure__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.l6-pressure__card-title {
  margin: 0 0 13px;
  color: var(--l6-navy);
  font-family: var(--l6-font-sans);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.l6-pressure__card-text {
  margin: 0;
  color: var(--l6-ink);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================
   BUSINESS WHEEL
   ========================================================= */

.l6-wheel {
  width: 100%;
  padding: 72px 24px 78px;
  background: var(--l6-surface-cool);
  color: var(--l6-navy);
}

.l6-wheel__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.l6-wheel__content {
  max-width: 560px;
}

.l6-wheel__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-wheel__title {
  margin: 0 0 22px;
  color: var(--l6-navy);
  font-size: clamp(40px, 3.7vw, 56px);
  line-height: 1.08;
}

.l6-wheel__text {
  margin: 0 0 20px;
  color: var(--l6-muted);
  font-size: 17px;
  line-height: 1.7;
}

.l6-wheel__button {
  min-width: 350px;
  min-height: 48px;
  margin-top: 4px;
  padding: 12px 30px;
  border: 1px solid var(--l6-gold);
  background: #e2a93f;
  color: #111111 !important;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
}

.l6-wheel__button:hover {
  background: var(--l6-gold-light);
  color: #111111 !important;
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.18);
}

.l6-wheel__note {
  margin: 12px 0 0;
  color: var(--l6-muted-light);
  font-size: 14px;
  line-height: 1.5;
}

.l6-wheel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l6-wheel__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* =========================================================
   FIRST ACT OF SERVICE
   ========================================================= */

.l6-service {
  width: 100%;
  padding: 84px 24px 92px;
  background: var(--l6-white);
  color: var(--l6-navy);
}

.l6-service__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-service__title {
  max-width: 860px;
  margin: 0 0 50px;
  color: var(--l6-navy);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.12;
}

.l6-service__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.l6-service__card {
  min-height: 220px;
  padding: 36px 38px;
  border-radius: var(--l6-radius);
}

.l6-service__card--is {
  background: var(--l6-surface-blue);
}

.l6-service__card--not {
  background: var(--l6-surface-warm);
}

.l6-service__card-title {
  margin: 0 0 14px;
  color: var(--l6-navy);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
}

.l6-service__list {
  margin: 0;
  padding-left: 22px;
  color: #5e6f82;
  font-size: 16px;
  line-height: 1.55;
}

.l6-service__list li {
  margin-bottom: 5px;
}

.l6-service__list li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   APPROACH
   ========================================================= */

.l6-approach {
  position: relative;
  width: 100%;
  padding: 92px 24px 108px;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 24, 45, 0.92), rgba(5, 24, 45, 0.92)),
    url("https://level6transformation.kinsta.cloud/wp-content/uploads/2026/07/office-hallway.avif")
    center center / cover no-repeat;
  color: var(--l6-white);
}

.l6-approach__inner {
  position: relative;
  z-index: 2;
}

.l6-approach__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-approach__title {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--l6-white);
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: 1.12;
}

.l6-approach__description {
  max-width: 760px;
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.l6-approach__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: rgba(80, 98, 117, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.l6-approach__step {
  min-height: 210px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.l6-approach__step:last-child {
  border-right: 0;
}

.l6-approach__number {
  display: block;
  margin: 0 0 34px;
  color: var(--l6-gold);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.l6-approach__step-title {
  margin: 0 0 4px;
  color: var(--l6-white);
  font-size: 24px;
  line-height: 1.2;
}

.l6-approach__step-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   WHY LEVEL 6 EXISTS
   ========================================================= */

.l6-exists {
  width: 100%;
  background: #f8f6f1;
  color: var(--l6-navy);
}

.l6-exists__inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.8fr);
  min-height: 760px;
}

.l6-exists__visual {
  min-height: 760px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("https://level6transformation.kinsta.cloud/wp-content/uploads/2026/07/Arms-Stretched-out.avif")
    center center / cover no-repeat;
}

.l6-exists__content {
  display: flex;
  align-items: center;
  padding: 84px 88px;
}

.l6-exists__content-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.l6-exists__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-exists__title {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--l6-navy);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.1;
}

.l6-exists__description {
  max-width: 700px;
  margin: 0 0 48px;
  color: #627184;
  font-size: 16px;
  line-height: 1.7;
}

.l6-exists__quote {
  max-width: 680px;
  margin: 0 0 52px 58px;
  color: var(--l6-navy);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.16;
}

.l6-exists__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l6-exists__list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 24px;
  color: var(--l6-navy);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.l6-exists__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--l6-gold);
  font-weight: 700;
}

.l6-exists__list li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.l6-final-cta {
  width: 100%;
  padding: 92px 24px 100px;
  background: var(--l6-navy-deep);
  color: var(--l6-white);
}

.l6-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 72px;
}

.l6-final-cta__eyebrow {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.l6-final-cta__title {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--l6-white);
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: 1.08;
}

.l6-final-cta__description {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
}

.l6-final-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.l6-final-cta__button {
  min-width: 300px;
  min-height: 52px;
  padding: 13px 28px;
  border: 1px solid var(--l6-white);
  background: var(--l6-white);
  color: var(--l6-navy) !important;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.l6-final-cta__button:hover {
  background: var(--l6-gold);
  border-color: var(--l6-gold);
  color: #111111 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.l6-final-cta__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.5;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
  .l6-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 90px 40px 60px;
    gap: 45px;
  }

  .l6-hero__left,
  .l6-hero__card {
    max-width: 800px;
  }

  .l6-exists__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .l6-exists__visual {
    min-height: 520px;
  }

  .l6-exists__content {
    padding: 72px 40px 80px;
  }

  .l6-exists__quote {
    margin-left: 0;
  }
}

@media (max-width: 1000px) {
  .l6-approach__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l6-approach__step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .l6-approach__step:nth-child(2n) {
    border-right: 0;
  }

  .l6-approach__step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .l6-wheel {
    padding: 76px 22px 82px;
  }

  .l6-wheel__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .l6-wheel__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .l6-wheel__title,
  .l6-wheel__eyebrow,
  .l6-wheel__text,
  .l6-wheel__note {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .l6-pressure {
    padding: 78px 22px 84px;
  }

  .l6-pressure__cards {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }

  .l6-pressure__card {
    min-height: 0;
  }

  .l6-service {
    padding: 72px 22px 80px;
  }

  .l6-service__grid {
    grid-template-columns: 1fr;
  }

  .l6-service__title {
    max-width: 760px;
  }

  .l6-final-cta {
    padding: 76px 22px 84px;
  }

  .l6-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .l6-hero {
    padding: 65px 22px 40px;
    gap: 32px;
  }

  .l6-hero__title {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .l6-hero__description {
    font-size: 18px;
  }

  .l6-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .l6-hero__button,
  .l6-wheel__button,
  .l6-final-cta__button {
    width: 100%;
    min-width: 0;
  }

  .l6-hero__card {
    padding: 34px 26px;
    border-radius: 16px;
  }

  .l6-hero__card-title {
    font-size: 42px;
  }

  .l6-pressure {
    padding: 62px 18px 70px;
  }

  .l6-pressure__intro {
    margin-bottom: 40px;
  }

  .l6-pressure__title {
    font-size: 36px;
  }

  .l6-pressure__description {
    font-size: 16px;
    line-height: 1.65;
  }

  .l6-pressure__card {
    padding: 28px 24px;
    border-radius: 15px;
  }

  .l6-pressure__card-title {
    font-size: 21px;
  }

  .l6-wheel {
    padding: 62px 18px 68px;
  }

  .l6-wheel__title {
    font-size: 38px;
  }

  .l6-wheel__text {
    font-size: 16px;
  }

  .l6-wheel__image {
    max-width: 100%;
  }

  .l6-service {
    padding: 58px 18px 66px;
  }

  .l6-service__title {
    margin-bottom: 36px;
    font-size: 38px;
  }

  .l6-service__card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 15px;
  }

  .l6-service__card-title {
    font-size: 21px;
  }

  .l6-service__list {
    font-size: 15px;
  }

  .l6-approach {
    padding: 64px 18px 72px;
  }

  .l6-approach__title {
    font-size: 38px;
  }

  .l6-approach__description {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .l6-approach__steps {
    grid-template-columns: 1fr;
  }

  .l6-approach__step {
    min-height: 0;
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .l6-approach__step:last-child {
    grid-column: auto;
  }

  .l6-approach__number {
    margin-bottom: 18px;
  }

  .l6-exists__visual {
    min-height: 420px;
  }

  .l6-exists__content {
    padding: 58px 22px 66px;
  }

  .l6-exists__title {
    font-size: 38px;
  }

  .l6-exists__description {
    margin-bottom: 36px;
    font-size: 15px;
  }

  .l6-exists__quote {
    margin-bottom: 38px;
    font-size: 32px;
  }

  .l6-exists__list li {
    font-size: 14px;
  }

  .l6-final-cta {
    padding: 62px 18px 70px;
  }

  .l6-final-cta__title {
    font-size: 38px;
  }

  .l6-final-cta__description,
  .l6-final-cta__note {
    font-size: 16px;
  }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}