* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0908;
  --secondary-dark: #22333b;
    --light-bg: #eae0d5;
  --accent-sand: #c6ac8f;
  --accent-brown: #5e503f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
    font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark);
    background: var(--light-bg);
  overflow-x: hidden;
}

body.zny7fa-ryn-flux-menu-open {
  overflow: hidden;
}

.zny7fa-ryn-flux-container {
  max-width: 1320px;
  margin: 0 auto;
    padding: 0 24px;
}

.zny7fa-ryn-flux-header {
  position: fixed;
  top: 0;
    left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    padding: 20px 0;
}

.zny7fa-ryn-flux-header.zny7fa-ryn-flux-scrolled {
  background: rgba(234, 224, 213, 0.95);
  backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(10, 9, 8, 0.08);
  padding: 14px 0;
}

.zny7fa-ryn-flux-nav-wrapper {
  display: flex;
    justify-content: space-between;
  align-items: center;
}

.zny7fa-ryn-flux-logo img {
  height: 25px;
  transition: transform 0.3s ease;
}

.zny7fa-ryn-flux-logo:hover img {
    transform: scale(1.05);
}

.zny7fa-ryn-flux-nav {
  display: flex;
  align-items: center;
}

.zny7fa-ryn-flux-menu {
  display: flex;
    list-style: none;
  gap: 40px;
  align-items: center;
}

.zny7fa-ryn-flux-menu > li {
  position: relative;
}

.zny7fa-ryn-flux-menu > li > a {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
  font-weight: 500;
  color: var(--secondary-dark);
  text-decoration: none;
    transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.zny7fa-ryn-flux-menu > li > a:hover,
.zny7fa-ryn-flux-menu > li > a.zny7fa-ryn-flux-active {
    color: var(--accent-brown);
}

.zny7fa-ryn-flux-menu .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.zny7fa-ryn-flux-dropdown:hover .material-symbols-outlined {
    transform: rotate(180deg);
}

.zny7fa-ryn-flux-submenu {
  position: absolute;
    top: calc(100% + 20px);
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 12px 0;
    border-radius: 8px;
  box-shadow: 0 8px 32px rgba(10, 9, 8, 0.12);
  opacity: 0;
  visibility: hidden;
    transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  list-style: none;
}

.zny7fa-ryn-flux-dropdown:hover .zny7fa-ryn-flux-submenu {
  opacity: 1;
    visibility: visible;
  transform: translateY(0);
}

.zny7fa-ryn-flux-submenu li {
  padding: 0;
}

.zny7fa-ryn-flux-submenu a {
    display: block;
  padding: 10px 24px;
  color: var(--secondary-dark);
  text-decoration: none;
  font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.zny7fa-ryn-flux-submenu a:hover {
  background: var(--light-bg);
  color: var(--accent-brown);
}

.zny7fa-ryn-flux-mobile-toggle {
    display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
    gap: 6px;
  padding: 8px;
}

.zny7fa-ryn-flux-mobile-toggle span {
  width: 28px;
  height: 3px;
    background: var(--secondary-dark);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.zny7fa-ryn-flux-mobile-toggle.zny7fa-ryn-flux-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.zny7fa-ryn-flux-mobile-toggle.zny7fa-ryn-flux-active span:nth-child(2) {
  opacity: 0;
}

.zny7fa-ryn-flux-mobile-toggle.zny7fa-ryn-flux-active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

main {
  padding-top: 82px;
}

.hero_wrapper {
	padding: 100px 0 90px;
  background: var(--light-bg);
}

.hero_inner {
	width: 100%;
}

.hero_inner:after {
  content: "";
  display: table;
  clear: both;
}

.hero-left-side {
	float: left;
  width: 42%;
  padding-right: 50px;
}

.hero-left-side img {
	width: 100%;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(10, 9, 8, 0.14);
}

.hero-txt-block {
	float: right;
  width: 58%;
  padding-top: 20px;
}

.hero-txt-block h1 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  line-height: 1.15;
  font-weight: 700;
	color: var(--primary-dark);
  margin-bottom: 32px;
  letter-spacing: -1.2px;
}

.hero_desc {
	margin-bottom: 42px;
}

.hero_desc p {
	font-size: 18px;
  color: var(--secondary-dark);
  line-height: 1.7;
	margin-bottom: 14px;
}

.hero_btns {
	display: inline-block;
}

.primary-btn {
	display: inline-block;
  background: var(--accent-brown);
  color: #fff;
	padding: 15px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
	font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-right: 20px;
}

.primary-btn:hover {
	background: var(--secondary-dark);
  transform: translateY(-2px);
}

.link-arrow {
	display: inline-block;
  color: var(--accent-brown);
  text-decoration: none;
	font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid var(--accent-brown);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.link-arrow:hover {
	border-color: var(--secondary-dark);
  color: var(--secondary-dark);
}

.numbers_band {
	padding: 75px 0;
  background: var(--primary-dark);
}

.numbers_wrap {
	width: 100%;
}

.num_box {
	text-align: center;
  padding: 0 15px;
}

.big_num {
	display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
	font-weight: 700;
  color: var(--accent-sand);
  line-height: 1;
  margin-bottom: 14px;
}

.num_label {
	display: block;
  font-size: 14px;
  color: rgba(234, 224, 213, 0.7);
}

.what_section {
	padding: 100px 0;
  background: #fff;
}

.what_txt {
	margin-bottom: 65px;
}

.what_txt h2 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
	color: var(--primary-dark);
}

.services_lineup {
	width: 100%;
}

.svc_item {
	width: 100%;
  margin-bottom: 44px;
	border-bottom: 1px solid rgba(34, 51, 59, 0.1);
  padding-bottom: 44px;
}

.svc_item:after {
  content: "";
  display: table;
  clear: both;
}

.svc_item:last-child {
	border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.svc_icon {
	float: left;
  width: 80px;
}

.svc_icon .material-symbols-outlined {
	font-size: 44px;
  color: var(--accent-brown);
}

.svc_content {
	float: left;
  width: calc(100% - 80px);
  padding-left: 20px;
}

.svc_content h3 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
	color: var(--primary-dark);
  margin-bottom: 10px;
}

.svc_content p {
	font-size: 17px;
  line-height: 1.7;
  color: var(--secondary-dark);
}

.proof_area {
	padding: 100px 0;
  background: var(--light-bg);
}

.proof_grid {
	width: 100%;
}

.proof_grid:after {
  content: "";
  display: table;
  clear: both;
}

.proof_left {
	float: left;
  width: 48%;
  padding-right: 50px;
}

.proof_left img {
	width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
}

.proof_caption {
	font-size: 14px;
  color: var(--secondary-dark);
  font-style: italic;
  font-weight: 500;
}

.proof_right {
	float: right;
  width: 52%;
}

.case_block {
	background: #fff;
  padding: 36px 32px;
	border-radius: 10px;
  margin-bottom: 28px;
}

.case_block:last-child {
	margin-bottom: 0;
}

.case_top {
	margin-bottom: 24px;
}

.case_top:after {
  content: "";
  display: table;
  clear: both;
}

.client_photo {
	float: left;
  width: 52px;
  height: 52px;
	border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.client_info {
	float: left;
  padding-top: 6px;
}

.client_name {
	font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
	margin-bottom: 4px;
}

.client_biz {
	font-size: 13px;
  color: var(--secondary-dark);
}

.case_text {
	clear: both;
  font-size: 16px;
  line-height: 1.7;
	color: var(--secondary-dark);
}

.how_works {
	padding: 100px 0;
  background: var(--secondary-dark);
}

.how_title {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
	color: #fff;
  margin-bottom: 60px;
}

.process_container {
	width: 100%;
}

.process_step {
	width: 100%;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(234, 224, 213, 0.2);
}

.process_step:after {
  content: "";
  display: table;
  clear: both;
}

.process_step:last-child {
	margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.step_marker {
	float: left;
  width: 90px;
  font-family: 'Space Grotesk', sans-serif;
	font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-sand);
  letter-spacing: 1px;
}

.step_detail {
	float: left;
  width: calc(100% - 90px);
  padding-left: 30px;
}

.step_detail h3 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
	color: #fff;
  margin-bottom: 12px;
}

.step_detail p {
	font-size: 16px;
  line-height: 1.7;
  color: rgba(234, 224, 213, 0.85);
}

.why_block {
	padding: 100px 0;
  background: #fff;
}

.why_content {
	width: 100%;
}

.why_content:after {
  content: "";
  display: table;
  clear: both;
}

.why_col_left {
	float: left;
  width: 38%;
  padding-right: 60px;
}

.why_col_left h2 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
	color: var(--primary-dark);
  margin-bottom: 24px;
}

.why_intro {
	font-size: 17px;
  line-height: 1.7;
  color: var(--secondary-dark);
}

.why_col_right {
	float: right;
  width: 62%;
}

.reason_item {
	margin-bottom: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(94, 80, 63, 0.15);
}

.reason_item:last-child {
	margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.reason_item h4 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
	color: var(--accent-brown);
  margin-bottom: 10px;
}

.reason_item p {
	font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-dark);
}

.questions_part {
	padding: 100px 0;
  background: var(--light-bg);
}

.qs_title {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
	color: var(--primary-dark);
  margin-bottom: 55px;
  text-align: center;
}

.qa_list {
	max-width: 850px;
  margin: 0 auto;
}

.qa_item {
	background: #fff;
  padding: 32px 36px;
	border-radius: 8px;
  margin-bottom: 24px;
}

.qa_item:last-child {
	margin-bottom: 0;
}

.q_text {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
	color: var(--primary-dark);
  margin-bottom: 14px;
}

.a_text {
	font-size: 16px;
  line-height: 1.7;
  color: var(--secondary-dark);
}

.final_push {
	padding: 115px 0;
  background: var(--primary-dark);
}

.push_box {
	text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.push_box h2 {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 54px;
  font-weight: 700;
	color: #fff;
  margin-bottom: 22px;
}

.push_box p {
	font-size: 18px;
  line-height: 1.7;
  color: rgba(234, 224, 213, 0.8);
	margin-bottom: 40px;
}

.contact_options {
	display: inline-block;
}

.phone_display {
	display: inline-block;
  vertical-align: middle;
  margin-left: 28px;
}

.phone_display .material-symbols-outlined {
	display: inline-block;
  vertical-align: middle;
  font-size: 22px;
	color: var(--accent-sand);
  margin-right: 8px;
}

.phone_display a {
	display: inline-block;
  vertical-align: middle;
  color: var(--accent-sand);
	text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.phone_display a:hover {
	color: #fff;
}

.zny7fa-ryn-flux-footer {
  background: var(--primary-dark);
    color: var(--light-bg);
  padding: 80px 0 0 0;
  margin-top: 0;
}

.zny7fa-ryn-flux-footer-grid {
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.zny7fa-ryn-flux-footer-logo img {
    height: 38px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.zny7fa-ryn-flux-footer-desc {
  font-size: 15px;
    color: rgba(234, 224, 213, 0.7);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 320px;
}

.zny7fa-ryn-flux-footer-stats {
    display: flex;
  gap: 40px;
}

.zny7fa-ryn-flux-stat-item {
  display: flex;
  flex-direction: column;
}

.zny7fa-ryn-flux-stat-num {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-sand);
  line-height: 1;
    margin-bottom: 6px;
}

.zny7fa-ryn-flux-stat-label {
  font-size: 13px;
  color: rgba(234, 224, 213, 0.6);
  text-transform: lowercase;
}

.zny7fa-ryn-flux-footer-title {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

.zny7fa-ryn-flux-footer-links {
    list-style: none;
}

.zny7fa-ryn-flux-footer-links li {
  margin-bottom: 14px;
}

.zny7fa-ryn-flux-footer-links a {
    color: rgba(234, 224, 213, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.zny7fa-ryn-flux-footer-links a:hover {
    color: var(--accent-sand);
  transform: translateX(4px);
}

.zny7fa-ryn-flux-footer-contact {
  list-style: none;
}

.zny7fa-ryn-flux-footer-contact li {
    display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
    color: rgba(234, 224, 213, 0.7);
}

.zny7fa-ryn-flux-footer-contact .material-symbols-outlined {
  font-size: 20px;
  color: var(--accent-sand);
}

.zny7fa-ryn-flux-footer-bottom {
    border-top: 1px solid rgba(234, 224, 213, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zny7fa-ryn-flux-footer-legal {
    display: flex;
  gap: 30px;
}

.zny7fa-ryn-flux-footer-legal a {
  color: rgba(234, 224, 213, 0.5);
    font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zny7fa-ryn-flux-footer-legal a:hover {
  color: var(--accent-sand);
}

.zny7fa-ryn-flux-footer-copy p {
    font-size: 13px;
  color: rgba(234, 224, 213, 0.5);
}

.zny7fa-ryn-flux-cookie-banner {
  position: fixed;
    bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 -8px 40px rgba(10, 9, 8, 0.15);
    padding: 24px 32px;
  border-radius: 16px 16px 0 0;
  max-width: 900px;
  width: calc(100% - 48px);
  z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.zny7fa-ryn-flux-cookie-banner.zny7fa-ryn-flux-show {
  bottom: 0;
}

.zny7fa-ryn-flux-cookie-content {
    display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.zny7fa-ryn-flux-cookie-text p {
    font-size: 14px;
  color: var(--secondary-dark);
  line-height: 1.6;
  margin: 0;
}

.zny7fa-ryn-flux-cookie-actions {
    display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.zny7fa-ryn-flux-cookie-link {
  color: var(--accent-brown);
    font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.zny7fa-ryn-flux-cookie-link:hover {
    color: var(--secondary-dark);
}

.zny7fa-ryn-flux-cookie-btn {
  background: var(--accent-brown);
  color: #fff;
    border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
    font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.zny7fa-ryn-flux-cookie-btn:hover {
    background: var(--secondary-dark);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .zny7fa-ryn-flux-menu {
    gap: 28px;
  }

  .hero-left-side {
	width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-txt-block {
	width: 100%;
    float: none;
    padding-top: 0;
  }

  .hero-txt-block h1 {
	font-size: 52px;
  }

  .proof_left {
	width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .proof_right {
	width: 100%;
    float: none;
  }

  .why_col_left {
	width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .why_col_right {
	width: 100%;
    float: none;
  }

  .zny7fa-ryn-flux-footer-grid {
        grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
    .zny7fa-ryn-flux-mobile-toggle {
    display: flex;
  }

  .zny7fa-ryn-flux-nav {
    position: fixed;
        top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
        padding: 100px 30px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(10, 9, 8, 0.1);
  }

  .zny7fa-ryn-flux-nav.zny7fa-ryn-flux-active {
        right: 0;
  }

  .zny7fa-ryn-flux-menu {
    flex-direction: column;
    align-items: flex-start;
        gap: 20px;
  }

  .zny7fa-ryn-flux-submenu {
    position: static;
    opacity: 1;
        visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0 20px;
        max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .zny7fa-ryn-flux-dropdown.zny7fa-ryn-flux-open .zny7fa-ryn-flux-submenu {
        max-height: 300px;
  }

  .hero_wrapper {
	padding: 75px 0 65px;
  }

  .hero-txt-block h1 {
	font-size: 40px;
  }

  .hero_desc p {
	font-size: 16px;
  }

  .hero_btns {
	display: block;
  }

  .primary-btn {
	display: block;
    margin-bottom: 16px;
    margin-right: 0;
    text-align: center;
  }

  .link-arrow {
	display: inline-block;
  }

  .numbers_band {
	padding: 65px 0;
  }

  .numbers_wrap > div {
	width: 50% !important;
    margin-bottom: 35px;
  }

  .what_section {
	padding: 75px 0;
  }

  .what_txt h2 {
	font-size: 38px;
  }

  .svc_icon {
	width: 60px;
  }

  .svc_content {
	width: calc(100% - 60px);
  }

  .svc_content h3 {
	font-size: 22px;
  }

  .proof_area {
	padding: 75px 0;
  }

  .how_works {
	padding: 75px 0;
  }

  .how_title {
	font-size: 38px;
  }

  .step_marker {
	width: 100%;
    float: none;
    margin-bottom: 10px;
  }

  .step_detail {
	width: 100%;
    float: none;
    padding-left: 0;
  }

  .why_block {
	padding: 75px 0;
  }

  .why_col_left h2 {
	font-size: 38px;
  }

  .questions_part {
	padding: 75px 0;
  }

  .qs_title {
	font-size: 38px;
  }

  .final_push {
	padding: 85px 0;
  }

  .push_box h2 {
	font-size: 40px;
  }

  .phone_display {
	display: block;
    margin-left: 0;
    margin-top: 20px;
  }

  .zny7fa-ryn-flux-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zny7fa-ryn-flux-footer-bottom {
        flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .zny7fa-ryn-flux-footer-legal {
    flex-direction: column;
        gap: 14px;
  }

  .zny7fa-ryn-flux-cookie-content {
    flex-direction: column;
    gap: 20px;
  }

  .zny7fa-ryn-flux-cookie-actions {
        width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .zny7fa-ryn-flux-container {
    padding: 0 16px;
  }

  .hero-txt-block h1 {
	font-size: 34px;
  }

  .what_txt h2 {
	font-size: 32px;
  }

  .how_title {
	font-size: 32px;
  }

  .why_col_left h2 {
	font-size: 32px;
  }

  .qs_title {
	font-size: 32px;
  }

  .push_box h2 {
	font-size: 34px;
  }

  .zny7fa-ryn-flux-footer {
    padding: 60px 0 0 0;
  }

  .zny7fa-ryn-flux-cookie-banner {
        padding: 20px 24px;
  }
}

.kpx-main-wrap {
	padding-top: 82px;
}

.kpx-intro-block {
  background: linear-gradient(165deg, var(--light-bg) 0%, rgba(198, 172, 143, 0.15) 100%);
	padding: 140px 0 90px 0;
}

.kpx-intro-inner {
  max-width: 760px;
}

.kpx-tag-line {
	font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
    text-transform: uppercase;
	letter-spacing: 2.5px;
  font-weight: 600;
	color: var(--accent-brown);
  margin-bottom: 22px;
}

.kpx-intro-block h1 {
    font-family: 'Space Grotesk', sans-serif;
	font-size: 64px;
  font-weight: 700;
    color: var(--primary-dark);
  line-height: 1.1;
	letter-spacing: -1.4px;
    margin-bottom: 26px;
}

.kpx-intro-text p {
  font-size: 21px;
	line-height: 1.65;
    color: var(--secondary-dark);
}

.kpx-numbers-float {
	background: var(--accent-brown);
  padding: 65px 0;
	margin: 0 0 110px 0;
}

.kpx-num-container {
    width: 100%;
  overflow: hidden;
}

.kpx-big-num {
	font-family: 'Space Grotesk', sans-serif;
    font-size: 58px;
  font-weight: 700;
	color: var(--light-bg);
    line-height: 1;
  margin-bottom: 10px;
	text-align: center;
}

.kpx-num-txt {
    font-size: 15px;
	color: rgba(234, 224, 213, 0.8);
  text-align: center;
}

.kpx-approach-wrap {
	padding: 0 0 110px 0;
}

.kpx-approach-grid {
    overflow: hidden;
}

.kpx-img-holder img {
  width: 100%;
	display: block;
    border-radius: 10px;
  box-shadow: 0 18px 50px rgba(10, 9, 8, 0.12);
}

.kpx-approach-content h2 {
	font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
  font-weight: 700;
	color: var(--primary-dark);
    margin-bottom: 28px;
  line-height: 1.15;
	letter-spacing: -0.9px;
}

.kpx-approach-content p {
    font-size: 17px;
	line-height: 1.75;
  color: var(--secondary-dark);
    margin-bottom: 22px;
}

.kpx-approach-content p:last-child {
	margin-bottom: 0;
}

.kpx-team-strip {
  background: var(--primary-dark);
	padding: 90px 0;
    margin: 0 0 110px 0;
}

.kpx-team-strip h2 {
	font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
  font-weight: 700;
	color: var(--light-bg);
    margin-bottom: 50px;
  line-height: 1.15;
	letter-spacing: -0.9px;
}

.kpx-team-layout {
	overflow: hidden;
}

.kpx-team-strip p {
    font-size: 16px;
  line-height: 1.7;
	color: rgba(234, 224, 213, 0.8);
    margin-bottom: 24px;
}

.kpx-reality-section {
	padding: 0 0 110px 0;
}

.kpx-reality-layout {
    overflow: hidden;
}

.kpx-reality-txt h2 {
  font-family: 'Space Grotesk', sans-serif;
	font-size: 48px;
    font-weight: 700;
  color: var(--primary-dark);
	margin-bottom: 28px;
    line-height: 1.15;
  letter-spacing: -0.9px;
}

.kpx-reality-txt p {
	font-size: 17px;
    line-height: 1.75;
  color: var(--secondary-dark);
	margin-bottom: 22px;
}

.kpx-reality-txt p:last-child {
    margin-bottom: 0;
}

.kpx-reality-img img {
	width: 100%;
  display: block;
	border-radius: 10px;
    box-shadow: 0 18px 50px rgba(10, 9, 8, 0.12);
}

.kpx-truth-box {
    padding: 0 0 110px 0;
}

.kpx-truth-content h2 {
  font-family: 'Space Grotesk', sans-serif;
	font-size: 48px;
    font-weight: 700;
  color: var(--primary-dark);
	margin-bottom: 50px;
    line-height: 1.15;
  letter-spacing: -0.9px;
	text-align: center;
}

.kpx-truth-grid {
	overflow: hidden;
}

.kpx-truth-item h3 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
	font-weight: 600;
    color: var(--primary-dark);
  margin-bottom: 14px;
}

.kpx-truth-item p {
	font-size: 16px;
    line-height: 1.7;
  color: var(--secondary-dark);
}

.kpx-truth-closer {
	text-align: center;
    margin-top: 70px;
  background: var(--light-bg);
	border: 2px solid var(--accent-brown);
    padding: 55px 35px;
  border-radius: 10px;
}

.kpx-truth-closer p {
	font-size: 19px;
    color: var(--primary-dark);
  font-weight: 500;
	margin-bottom: 24px;
}

.kpx-contact-link {
    display: inline-block;
  background: var(--accent-brown);
	color: #fff;
    padding: 16px 44px;
  border-radius: 8px;
	font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
  font-weight: 600;
	text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.kpx-contact-link:hover {
	background: var(--secondary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .kpx-intro-block h1 {
		font-size: 52px;
  }

  .kpx-intro-text p {
    font-size: 19px;
	}

  .kpx-num-container > div {
		width: 48% !important;
    margin-right: 4% !important;
		margin-bottom: 30px;
  }

  .kpx-num-container > div:nth-child(2),
  .kpx-num-container > div:nth-child(4) {
		margin-right: 0 !important;
  }

  .kpx-approach-grid > div,
  .kpx-reality-layout > div,
  .kpx-team-layout > div {
		width: 100% !important;
    margin-right: 0 !important;
		margin-bottom: 50px;
  }

  .kpx-approach-grid > div:last-child,
  .kpx-reality-layout > div:last-child {
		margin-bottom: 0;
  }

  .kpx-truth-grid > div {
		width: 100% !important;
    margin-right: 0 !important;
		margin-top: 0 !important;
    margin-bottom: 30px;
	}

  .kpx-approach-content h2,
  .kpx-reality-txt h2,
  .kpx-team-strip h2,
  .kpx-truth-content h2 {
		font-size: 40px;
  }
}

@media (max-width: 768px) {
	.kpx-intro-block {
    padding: 120px 0 70px 0;
	}

  .kpx-intro-block h1 {
		font-size: 36px;
  }

  .kpx-intro-text p {
		font-size: 17px;
  }

  .kpx-numbers-float {
		padding: 50px 0;
    margin: 0 0 80px 0;
	}

  .kpx-num-container > div {
		width: 100% !important;
    margin-right: 0 !important;
	}

  .kpx-big-num {
		font-size: 48px;
  }

  .kpx-approach-wrap,
  .kpx-reality-section,
  .kpx-truth-box {
		padding: 0 0 80px 0;
  }

  .kpx-team-strip {
		padding: 70px 0;
    margin: 0 0 80px 0;
	}

  .kpx-approach-content h2,
  .kpx-reality-txt h2,
  .kpx-team-strip h2,
  .kpx-truth-content h2 {
		font-size: 32px;
  }

  .kpx-approach-content p,
  .kpx-reality-txt p {
		font-size: 16px;
  }

  .kpx-truth-closer {
		padding: 45px 28px;
    margin-top: 50px;
	}

  .kpx-truth-closer p {
		font-size: 17px;
  }
}

@media (max-width: 480px) {
	.kpx-intro-block {
    padding: 100px 0 60px 0;
	}

  .kpx-intro-block h1 {
		font-size: 30px;
  }

  .kpx-approach-content h2,
  .kpx-reality-txt h2,
  .kpx-team-strip h2,
  .kpx-truth-content h2 {
		font-size: 28px;
  }

  .kpx-truth-item h3 {
		font-size: 21px;
  }
}

.wfBox-top {
padding: 165px 0 95px 0;
  background: var(--light-bg);
}

.wfBox-top h1 {
font-family: 'Space Grotesk', sans-serif;
    font-size: 67px;
font-weight: 700;
  color: var(--primary-dark);
margin-bottom: 48px;
    letter-spacing: -2.1px;
  line-height: 1.08;
}

.wfBox-split {
  display: table;
    width: 100%;
  table-layout: fixed;
}

.wfBox-splitLeft {
display: table-cell;
  width: 52%;
    vertical-align: middle;
  padding-right: 70px;
}

.wfBox-splitRight {
  display: table-cell;
    width: 48%;
vertical-align: middle;
}

.wfBox-splitLeft p {
  font-size: 19px;
    line-height: 1.72;
color: var(--secondary-dark);
  margin-bottom: 22px;
}

.wfBox-splitRight img {
    width: 100%;
  height: auto;
border-radius: 11px;
    box-shadow: 0 14px 52px rgba(10, 9, 8, 0.13);
}

.wfBox-timeline {
  padding: 110px 0 90px 0;
    background: #fff;
}

.wf-phase {
margin-bottom: 52px;
    padding-left: 180px;
  position: relative;
}

.wf-phaseNum {
  position: absolute;
    left: 0;
top: 0;
  font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 1.3px;
  color: var(--accent-brown);
}

.wf-phaseWrap {
    background: var(--light-bg);
  padding: 38px 42px;
border-radius: 9px;
}

.wf-phaseWrap h3 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 29px;
  font-weight: 700;
color: var(--primary-dark);
    margin-bottom: 18px;
}

.wf-phaseWrap p {
font-size: 16px;
  line-height: 1.68;
    color: var(--secondary-dark);
  margin-bottom: 16px;
}

.wf-phaseWrap p:last-of-type {
    margin-bottom: 24px;
}

.wf-dayCount {
  display: inline-block;
    padding: 7px 18px;
background: #fff;
  border-radius: 18px;
    font-size: 13px;
  font-weight: 600;
color: var(--accent-sand);
}

.wfBox-real {
    padding: 85px 0;
  background: var(--primary-dark);
}

.wfReal-inner {
  max-width: 880px;
    margin: 0 auto;
}

.wfReal-inner h2 {
font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
  font-weight: 700;
color: #fff;
  margin-bottom: 52px;
    text-align: center;
  letter-spacing: -1.4px;
}

.wfReal-bars {
    padding: 0;
}

.wfReal-row {
  margin-bottom: 32px;
    position: relative;
}

.wfReal-label {
  display: block;
    font-size: 14px;
color: rgba(234, 224, 213, 0.7);
  margin-bottom: 10px;
    font-weight: 500;
}

.wfReal-bar {
  background: var(--accent-sand);
    height: 48px;
  border-radius: 7px;
display: flex;
    align-items: center;
  padding: 0 24px;
position: relative;
    overflow: hidden;
}

.wfReal-bar span {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
font-weight: 700;
  color: var(--primary-dark);
    position: relative;
  z-index: 2;
}

.wfReal-bar1 { width: 55%; }
.wfReal-bar2 { width: 78%; }
.wfReal-bar3 { width: 100%; }

.wfReal-note {
    font-size: 14px;
  color: rgba(234, 224, 213, 0.6);
margin-top: 38px;
    text-align: center;
  font-style: italic;
}

.wfBox-after {
  padding: 95px 0 110px 0;
    background: var(--light-bg);
}

.wfBox-after h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
font-weight: 700;
  color: var(--primary-dark);
    text-align: center;
  margin-bottom: 58px;
letter-spacing: -1.3px;
}

.wfAfter-options {
    display: table;
  width: 100%;
table-layout: fixed;
    border-spacing: 48px 0;
}

.wfAfter-col {
display: table-cell;
  width: 50%;
    background: #fff;
  padding: 42px 38px;
border-radius: 10px;
}

.wfAfter-col h4 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
font-weight: 600;
    color: var(--primary-dark);
  margin-bottom: 16px;
}

.wfAfter-col p {
    font-size: 16px;
line-height: 1.7;
  color: var(--secondary-dark);
}

@media (max-width: 1024px) {
  .wfBox-top h1 {
    font-size: 54px;
  }
  
  .wfBox-splitLeft {
        padding-right: 50px;
  }
  
  .wf-phase {
    padding-left: 140px;
  }
  
  .wfReal-inner h2 {
        font-size: 38px;
  }
  
  .wfBox-after h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
    .wfBox-top {
    padding: 135px 0 70px 0;
  }
  
  .wfBox-top h1 {
        font-size: 39px;
  }
  
  .wfBox-split {
    display: block;
  }
  
  .wfBox-splitLeft,
    .wfBox-splitRight {
    display: block;
    width: 100%;
        padding-right: 0;
  }
  
  .wfBox-splitLeft {
    margin-bottom: 38px;
  }
  
  .wf-phase {
        padding-left: 0;
    padding-top: 42px;
  }
  
  .wf-phaseNum {
        position: static;
    margin-bottom: 14px;
  }
  
  .wfReal-bar1,
    .wfReal-bar2,
  .wfReal-bar3 {
    width: 100%;
  }
  
  .wfAfter-options {
        display: block;
    border-spacing: 0;
  }
  
  .wfAfter-col {
        display: block;
    width: 100%;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
    .wfBox-top h1 {
    font-size: 32px;
  }
  
  .wfBox-splitLeft p {
        font-size: 17px;
  }
  
  .wf-phaseWrap {
    padding: 28px 24px;
  }
  
  .wf-phaseWrap h3 {
        font-size: 24px;
  }
  
  .wfReal-inner h2 {
    font-size: 30px;
  }
  
  .wfBox-after h2 {
        font-size: 28px;
  }
}

.csTop-wrap {
  padding: 168px 0 88px 0;
    background: linear-gradient(168deg, var(--light-bg) 0%, rgba(94, 80, 63, 0.09) 100%);
}

.csTop-wrap h1 {
font-family: 'Space Grotesk', sans-serif;
    font-size: 71px;
  font-weight: 700;
color: var(--primary-dark);
    margin-bottom: 26px;
  letter-spacing: -2.6px;
line-height: 1.06;
}

.csTop-sub {
    font-size: 19px;
color: var(--secondary-dark);
  opacity: 0.82;
}

.cs-storyWrap {
    padding: 95px 0;
}

.cs-story1 { background: #fff; }
.cs-story2 { background: var(--light-bg); }
.cs-story3 { background: #fff; }

.csStory-tag {
  display: inline-block;
    font-size: 12px;
  text-transform: uppercase;
letter-spacing: 1.6px;
    background: var(--accent-brown);
  color: #fff;
padding: 9px 20px;
    border-radius: 5px;
  font-weight: 600;
margin-bottom: 20px;
}

.cs-storyWrap h2 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
font-weight: 700;
    color: var(--primary-dark);
  margin-bottom: 48px;
line-height: 1.22;
    letter-spacing: -1.1px;
}

.csStory-layout {
  display: table;
    width: 100%;
  table-layout: fixed;
}

.csStory-text {
    display: table-cell;
  width: 58%;
vertical-align: top;
    padding-right: 64px;
}

.csStory-nums {
  display: table-cell;
    width: 42%;
  vertical-align: top;
}

.csStory-layoutReverse .csStory-text {
    padding-right: 0;
  padding-left: 64px;
}

.csStory-layoutReverse .csStory-text {
    display: table-cell;
}

.csStory-layoutReverse .csStory-nums {
  display: table-cell;
}

.csStory-text h4 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
text-transform: uppercase;
    letter-spacing: 1.4px;
  color: var(--accent-sand);
font-weight: 600;
    margin-bottom: 14px;
  margin-top: 32px;
}

.csStory-text h4:first-child {
    margin-top: 0;
}

.csStory-text p {
  font-size: 16px;
    line-height: 1.72;
  color: var(--secondary-dark);
margin-bottom: 18px;
}

.csNum {
    background: var(--secondary-dark);
  padding: 34px 32px;
border-radius: 8px;
    margin-bottom: 24px;
}

.csNum:last-child {
  margin-bottom: 0;
}

.csNum-val {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
font-weight: 700;
    color: var(--accent-sand);
  line-height: 1;
margin-bottom: 12px;
}

.csNum-label {
    font-size: 14px;
  color: rgba(234, 224, 213, 0.8);
line-height: 1.5;
}

.csNums-bigWrap {
    padding: 88px 0;
  background: var(--accent-sand);
}

.csNums-row {
  display: table;
    width: 100%;
  table-layout: fixed;
}

.csNums-item {
    display: table-cell;
  text-align: center;
vertical-align: top;
    padding: 0 32px;
  border-right: 2px solid rgba(10, 9, 8, 0.15);
}

.csNums-item:last-child {
    border-right: none;
}

.csNums-big {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
  font-weight: 700;
color: var(--primary-dark);
    line-height: 1;
  margin-bottom: 16px;
}

.csNums-desc {
    font-size: 15px;
  color: var(--secondary-dark);
line-height: 1.6;
}

.csEnd-section {
    padding: 105px 0 118px 0;
  background: var(--light-bg);
}

.csEnd-section h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
  font-weight: 700;
color: var(--primary-dark);
    margin-bottom: 26px;
  letter-spacing: -1.2px;
}

.csEnd-section p {
    font-size: 17px;
  line-height: 1.74;
color: var(--secondary-dark);
    margin-bottom: 20px;
  max-width: 780px;
}

.csEnd-contact {
    margin-top: 48px;
  font-size: 18px;
}

.csEnd-contact a {
  color: var(--accent-brown);
    text-decoration: none;
  font-weight: 600;
transition: color 0.3s;
}

.csEnd-contact a:hover {
    color: var(--secondary-dark);
}

.csEnd-or {
  margin: 0 18px;
    color: var(--secondary-dark);
  opacity: 0.5;
}

@media (max-width: 1024px) {
    .csTop-wrap h1 {
    font-size: 56px;
  }
  
  .cs-storyWrap h2 {
        font-size: 36px;
  }
  
  .csStory-text {
    padding-right: 48px;
  }
  
  .csStory-layoutReverse .csStory-text {
        padding-left: 48px;
  }
  
  .csNum-val {
    font-size: 44px;
  }
  
  .csNums-big {
        font-size: 54px;
  }
}

@media (max-width: 768px) {
  .csTop-wrap {
        padding: 138px 0 68px 0;
  }
  
  .csTop-wrap h1 {
    font-size: 40px;
  }
  
  .cs-storyWrap {
        padding: 72px 0;
  }
  
  .cs-storyWrap h2 {
    font-size: 30px;
  }
  
  .csStory-layout {
        display: block;
  }
  
  .csStory-text,
  .csStory-nums {
        display: block;
    width: 100%;
    padding-right: 0;
        padding-left: 0;
  }
  
  .csStory-text {
    margin-bottom: 38px;
  }
  
  .csNums-row {
        display: block;
  }
  
  .csNums-item {
    display: block;
        text-align: left;
    padding: 24px 0;
    border-right: none;
        border-bottom: 2px solid rgba(10, 9, 8, 0.15);
  }
  
  .csNums-item:last-child {
        border-bottom: none;
  }
  
  .csEnd-section {
    padding: 85px 0 98px 0;
  }
  
  .csEnd-section h2 {
        font-size: 34px;
  }
  
  .csEnd-contact {
    display: block;
  }
  
  .csEnd-contact a {
        display: block;
    margin-bottom: 16px;
  }
  
  .csEnd-or {
        display: none;
  }
}

@media (max-width: 480px) {
  .csTop-wrap h1 {
        font-size: 33px;
  }
  
  .cs-storyWrap h2 {
    font-size: 26px;
  }
  
  .csStory-tag {
        font-size: 11px;
    padding: 7px 16px;
  }
  
  .csNum {
        padding: 26px 24px;
  }
  
  .csNum-val {
    font-size: 38px;
  }
  
  .csNums-big {
        font-size: 46px;
  }
  
  .csEnd-section h2 {
    font-size: 28px;
  }
}

.off-hero-wrap {
  padding: 140px 0 100px;
    background: linear-gradient(165deg, var(--light-bg) 0%, rgba(198, 172, 143, 0.15) 100%);
}

.off-hero-content {
  max-width: 720px;
  margin: 0 auto;
    text-align: center;
}

.off-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
    font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.off-hero-content p {
  font-size: 20px;
  color: var(--secondary-dark);
    opacity: 0.8;
  line-height: 1.6;
}

.off-core-wrap {
  padding: 100px 0;
}

.off-core-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.off-core-item {
  padding: 40px 32px;
    background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.off-core-item:hover {
    transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(10, 9, 8, 0.08);
}

.off-core-icon {
  width: 64px;
    height: 64px;
  background: var(--accent-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  margin-bottom: 24px;
}

.off-core-icon .material-symbols-outlined {
  font-size: 32px;
    color: #fff;
}

.off-core-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
    font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.off-core-item p {
  font-size: 15px;
    color: var(--secondary-dark);
  line-height: 1.7;
  opacity: 0.85;
}

.off-pricing-wrap {
    padding: 80px 0 120px;
  background: var(--primary-dark);
}

.off-pricing-header {
  text-align: center;
    margin-bottom: 70px;
}

.off-pricing-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
    font-weight: 700;
  color: var(--light-bg);
  margin-bottom: 16px;
}

.off-pricing-header p {
    font-size: 18px;
  color: rgba(234, 224, 213, 0.7);
}

.off-pricing-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.off-price-card {
    background: rgba(234, 224, 213, 0.05);
  border: 1px solid rgba(234, 224, 213, 0.1);
  border-radius: 16px;
  padding: 48px 36px;
    position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.off-price-card:hover {
  transform: translateY(-6px);
    border-color: var(--accent-sand);
}

.off-price-featured {
  border-color: var(--accent-sand);
    border-width: 2px;
  background: rgba(234, 224, 213, 0.08);
}

.off-price-badge {
  position: absolute;
    top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-brown);
  color: #fff;
    padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.off-price-label {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
  font-weight: 600;
  color: var(--accent-sand);
  text-transform: uppercase;
    letter-spacing: 1px;
  margin-bottom: 20px;
}

.off-price-amount {
  display: flex;
    align-items: flex-start;
  margin-bottom: 8px;
}

.off-price-currency {
  font-size: 28px;
    color: var(--light-bg);
  margin-right: 4px;
  margin-top: 8px;
}

.off-price-number {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--light-bg);
    line-height: 1;
}

.off-price-desc {
  font-size: 14px;
  color: rgba(234, 224, 213, 0.6);
    margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(234, 224, 213, 0.1);
}

.off-price-features {
    display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.off-price-feature {
    display: flex;
  align-items: flex-start;
  gap: 12px;
}

.off-price-feature .material-symbols-outlined {
    font-size: 20px;
  color: var(--accent-sand);
  flex-shrink: 0;
}

.off-price-feature span:last-child {
  font-size: 14px;
    color: rgba(234, 224, 213, 0.85);
  line-height: 1.6;
}

.off-price-btn {
  display: block;
    width: 100%;
  padding: 16px;
  background: var(--accent-brown);
  color: #fff;
    border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
    font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.off-price-btn:hover {
  background: var(--secondary-dark);
    transform: scale(1.02);
}

.off-addons-wrap {
  padding: 100px 0;
}

.off-addons-header {
    text-align: center;
  margin-bottom: 60px;
}

.off-addons-header h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.off-addons-header p {
    font-size: 18px;
  color: var(--secondary-dark);
  opacity: 0.7;
}

.off-addons-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.off-addon-card {
  background: #fff;
    padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid rgba(10, 9, 8, 0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.off-addon-card:hover {
  box-shadow: 0 8px 32px rgba(10, 9, 8, 0.1);
    transform: translateY(-4px);
}

.off-addon-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
    font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.off-addon-price {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-brown);
    margin-bottom: 16px;
}

.off-addon-card p {
  font-size: 15px;
  color: var(--secondary-dark);
    line-height: 1.6;
  opacity: 0.8;
}

.mrkt-hero-section {
  padding: 140px 0 120px;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(198, 172, 143, 0.2) 100%);
}

.mrkt-hero-layout {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mrkt-hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--primary-dark);
    line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.mrkt-hero-text p {
  font-size: 20px;
    color: var(--secondary-dark);
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 36px;
}

.mrkt-hero-cta {
    display: inline-block;
  padding: 18px 42px;
  background: var(--accent-brown);
  color: #fff;
    border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
    text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.mrkt-hero-cta:hover {
  background: var(--secondary-dark);
    transform: translateY(-3px);
}

.mrkt-hero-visual img {
  width: 100%;
  height: auto;
    border-radius: 16px;
  box-shadow: 0 16px 64px rgba(10, 9, 8, 0.15);
}

.mrkt-platforms-section {
    padding: 100px 0;
}

.mrkt-section-intro {
  text-align: center;
  max-width: 640px;
    margin: 0 auto 70px;
}

.mrkt-section-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
    font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.mrkt-section-intro p {
    font-size: 18px;
  color: var(--secondary-dark);
  opacity: 0.75;
}

.mrkt-platforms-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.mrkt-platform-box {
  background: #fff;
    padding: 40px 36px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-sand);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mrkt-platform-box:hover {
  transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(10, 9, 8, 0.08);
}

.mrkt-platform-box h3 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.mrkt-platform-box p {
    font-size: 15px;
  color: var(--secondary-dark);
  line-height: 1.7;
  margin-bottom: 24px;
    opacity: 0.85;
}

.mrkt-platform-stat {
  display: flex;
  flex-direction: column;
    padding-top: 20px;
  border-top: 1px solid rgba(10, 9, 8, 0.08);
}

.mrkt-stat-num {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
  font-weight: 700;
  color: var(--accent-brown);
  line-height: 1;
    margin-bottom: 6px;
}

.mrkt-stat-label {
  font-size: 13px;
  color: var(--secondary-dark);
    opacity: 0.6;
}

.mrkt-benefits-section {
  padding: 100px 0;
  background: var(--primary-dark);
}

.mrkt-benefits-section h2 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--light-bg);
    text-align: center;
  margin-bottom: 80px;
}

.mrkt-benefits-layout {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.mrkt-benefit-item {
  position: relative;
    padding-left: 80px;
}

.mrkt-benefit-number {
  position: absolute;
  left: 0;
    top: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
    color: var(--accent-sand);
  opacity: 0.3;
  line-height: 1;
}

.mrkt-benefit-item h3 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--light-bg);
    margin-bottom: 12px;
}

.mrkt-benefit-item p {
  font-size: 15px;
  color: rgba(234, 224, 213, 0.8);
    line-height: 1.7;
}

.mrkt-process-section {
  padding: 100px 0;
}

.mrkt-process-header {
    text-align: center;
  margin-bottom: 70px;
}

.mrkt-process-header h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.mrkt-process-header p {
    font-size: 18px;
  color: var(--secondary-dark);
  opacity: 0.7;
}

.mrkt-process-timeline {
  max-width: 900px;
    margin: 0 auto;
  position: relative;
}

.mrkt-process-timeline::before {
  content: '';
    position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
    width: 2px;
  background: var(--accent-sand);
  opacity: 0.3;
}

.mrkt-timeline-step {
    display: flex;
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
}

.mrkt-step-marker {
    width: 64px;
  height: 64px;
  background: var(--accent-sand);
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    position: relative;
  z-index: 1;
}

.mrkt-step-marker .material-symbols-outlined {
  font-size: 28px;
    color: #fff;
}

.mrkt-step-content {
  flex: 1;
  padding-top: 8px;
}

.mrkt-step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
    margin-bottom: 12px;
}

.mrkt-step-content p {
  font-size: 15px;
  color: var(--secondary-dark);
    line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 12px;
}

.mrkt-step-time {
    font-size: 13px;
  color: var(--accent-brown);
  font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trn-hero-wrap {
  padding: 140px 0 120px;
  background: linear-gradient(155deg, var(--light-bg) 0%, rgba(198, 172, 143, 0.25) 100%);
}

.trn-hero-content {
    max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trn-hero-badge {
  display: inline-block;
    background: var(--accent-sand);
  color: #fff;
  padding: 8px 24px;
  border-radius: 24px;
    font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
    margin-bottom: 28px;
}

.trn-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 68px;
    font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.05;
  margin-bottom: 24px;
    letter-spacing: -2px;
}

.trn-hero-content p {
  font-size: 20px;
  color: var(--secondary-dark);
    line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 40px;
}

.trn-hero-actions {
    display: flex;
  gap: 16px;
  justify-content: center;
}

.trn-hero-btn-primary,
.trn-hero-btn-secondary {
    padding: 18px 38px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
    font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trn-hero-btn-primary {
    background: var(--accent-brown);
  color: #fff;
}

.trn-hero-btn-primary:hover {
  background: var(--secondary-dark);
    transform: translateY(-3px);
}

.trn-hero-btn-secondary {
  background: transparent;
  color: var(--accent-brown);
    border: 2px solid var(--accent-brown);
}

.trn-hero-btn-secondary:hover {
  background: var(--accent-brown);
    color: #fff;
}

.trn-modules-wrap {
  padding: 100px 0;
}

.trn-modules-intro {
    text-align: center;
  margin-bottom: 70px;
}

.trn-modules-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.trn-modules-intro p {
    font-size: 18px;
  color: var(--secondary-dark);
  opacity: 0.7;
}

.trn-modules-layout {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.trn-module-card {
  background: #fff;
    padding: 40px 36px;
  border-radius: 12px;
  border: 1px solid rgba(10, 9, 8, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.trn-module-card:hover {
  box-shadow: 0 12px 48px rgba(10, 9, 8, 0.1);
    transform: translateY(-6px);
}

.trn-module-header {
  display: flex;
  align-items: center;
    gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent-sand);
}

.trn-module-header .material-symbols-outlined {
    font-size: 32px;
  color: var(--accent-brown);
}

.trn-module-header h3 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
}

.trn-module-topics {
    display: flex;
  flex-direction: column;
  gap: 14px;
}

.trn-topic-item {
  display: flex;
    align-items: flex-start;
  gap: 12px;
}

.trn-topic-item .material-symbols-outlined {
  font-size: 18px;
    color: var(--accent-sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.trn-topic-item span:last-child {
    font-size: 14px;
  color: var(--secondary-dark);
  line-height: 1.6;
  opacity: 0.85;
}

.trn-formats-wrap {
    padding: 100px 0;
  background: var(--primary-dark);
}

.trn-formats-wrap h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
  font-weight: 700;
  color: var(--light-bg);
  text-align: center;
    margin-bottom: 70px;
}

.trn-formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  margin-bottom: 60px;
}

.trn-format-box {
  background: rgba(234, 224, 213, 0.05);
    border: 1px solid rgba(234, 224, 213, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trn-format-box:hover {
  transform: translateY(-6px);
  border-color: var(--accent-sand);
}

.trn-format-icon {
    width: 56px;
  height: 56px;
  background: var(--accent-sand);
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.trn-format-icon .material-symbols-outlined {
    font-size: 28px;
  color: #fff;
}

.trn-format-box h3 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
  font-weight: 600;
  color: var(--light-bg);
  margin-bottom: 12px;
}

.trn-format-box p {
    font-size: 15px;
  color: rgba(234, 224, 213, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.trn-format-details {
    display: flex;
  flex-direction: column;
  gap: 12px;
}

.trn-detail-row {
  display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(234, 224, 213, 0.1);
}

.trn-detail-label {
    font-size: 13px;
  color: rgba(234, 224, 213, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
    font-weight: 600;
}

.trn-detail-value {
  font-size: 14px;
  color: rgba(234, 224, 213, 0.85);
    font-weight: 500;
}

.trn-formats-note {
  display: flex;
  gap: 16px;
    align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 32px;
    background: rgba(198, 172, 143, 0.15);
  border-radius: 12px;
  border-left: 4px solid var(--accent-sand);
}

.trn-formats-note .material-symbols-outlined {
    font-size: 24px;
  color: var(--accent-sand);
  flex-shrink: 0;
}

.trn-formats-note p {
  font-size: 15px;
    color: rgba(234, 224, 213, 0.9);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
    .off-hero-content h1 {
    font-size: 52px;
  }

  .mrkt-hero-layout {
    grid-template-columns: 1fr;
        gap: 60px;
  }

  .mrkt-hero-text h1 {
    font-size: 56px;
  }

  .trn-hero-content h1 {
        font-size: 56px;
  }

  .off-pricing-grid,
  .mrkt-platforms-grid,
  .trn-modules-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .off-hero-content h1 {
    font-size: 40px;
  }

  .off-pricing-header h2,
  .mrkt-section-intro h2,
    .mrkt-benefits-section h2,
  .mrkt-process-header h2,
  .trn-modules-intro h2,
  .trn-formats-wrap h2 {
    font-size: 36px;
  }

  .mrkt-hero-text h1 {
        font-size: 42px;
  }

  .trn-hero-content h1 {
    font-size: 42px;
  }

  .trn-hero-actions {
        flex-direction: column;
  }

  .trn-hero-btn-primary,
  .trn-hero-btn-secondary {
    width: 100%;
  }

  .mrkt-process-timeline::before {
        left: 20px;
  }

  .mrkt-timeline-step {
    gap: 20px;
  }

  .mrkt-step-marker {
        width: 48px;
    height: 48px;
  }

  .mrkt-step-marker .material-symbols-outlined {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
    .off-hero-content h1 {
    font-size: 32px;
  }

  .off-core-grid,
  .off-addons-grid {
    grid-template-columns: 1fr;
  }

  .mrkt-hero-text h1 {
        font-size: 34px;
  }

  .trn-hero-content h1 {
    font-size: 34px;
  }

  .off-price-number {
    font-size: 56px;
  }
}

.kx9p-journal-hero {
  padding: 140px 0 100px 0;
}

.kx9p-hero-split {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.kx9p-hero-tag {
  display: inline-block;
    background: var(--accent-brown);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
    font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.kx9p-hero-title {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 76px;
  font-weight: 700;
  color: var(--primary-dark);
    line-height: 0.95;
  letter-spacing: -3px;
}

.kx9p-hero-desc {
  font-size: 19px;
    color: var(--secondary-dark);
  line-height: 1.7;
  font-weight: 400;
  max-width: 480px;
}

.kx9p-journal-grid {
    padding: 0 0 120px 0;
}

.kx9p-articles-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  gap: 24px;
}

.kx9p-article-card {
  background: #fff;
  border-radius: 16px;
    position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.kx9p-article-card:hover {
    transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(10, 9, 8, 0.14);
}

.kx9p-card-large {
  grid-column: span 2;
    grid-row: span 2;
}

.kx9p-card-wide {
  grid-column: span 2;
}

.kx9p-card-tall {
    grid-row: span 2;
}

.kx9p-card-link {
  text-decoration: none;
  display: block;
    height: 100%;
}

.kx9p-card-content {
  padding: 40px;
  height: 100%;
    display: flex;
  flex-direction: column;
  position: relative;
}

.kx9p-card-large .kx9p-card-content {
  padding: 56px;
}

.kx9p-card-number {
    position: absolute;
  top: 32px;
  right: 32px;
  font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
  font-weight: 700;
  color: rgba(198, 172, 143, 0.15);
  line-height: 1;
}

.kx9p-card-large .kx9p-card-number {
    font-size: 120px;
  top: 48px;
  right: 48px;
}

.kx9p-card-meta {
  display: flex;
    gap: 16px;
  margin-bottom: 24px;
}

.kx9p-card-large .kx9p-card-meta {
  margin-bottom: 32px;
}

.kx9p-meta-date,
.kx9p-meta-read {
    font-size: 12px;
  color: var(--accent-brown);
  font-weight: 600;
  text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kx9p-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
    font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
    transition: color 0.3s ease;
}

.kx9p-card-large .kx9p-card-title {
  font-size: 44px;
  margin-bottom: 24px;
    line-height: 1.1;
}

.kx9p-card-wide .kx9p-card-title {
  font-size: 28px;
}

.kx9p-article-card:hover .kx9p-card-title {
    color: var(--accent-brown);
}

.kx9p-card-excerpt {
  font-size: 15px;
  color: var(--secondary-dark);
    line-height: 1.6;
  margin-bottom: auto;
}

.kx9p-card-large .kx9p-card-excerpt {
  font-size: 17px;
    line-height: 1.7;
}

.kx9p-card-footer {
  display: flex;
  justify-content: space-between;
    align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 9, 8, 0.08);
}

.kx9p-author {
    font-size: 13px;
  color: var(--secondary-dark);
  font-weight: 500;
}

.kx9p-arrow {
  color: var(--accent-brown);
    font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kx9p-article-card:hover .kx9p-arrow {
  transform: translateX(8px);
}

.kx9p-journal-cta {
    background: var(--secondary-dark);
  padding: 100px 0;
  text-align: center;
}

.kx9p-cta-inner {
  max-width: 680px;
    margin: 0 auto;
}

.kx9p-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
    font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.kx9p-cta-text {
    font-size: 18px;
  color: rgba(234, 224, 213, 0.8);
  line-height: 1.6;
  margin-bottom: 36px;
}

.kx9p-cta-btn {
    display: inline-block;
  background: var(--accent-brown);
  color: #fff;
  padding: 18px 48px;
    border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
    text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.kx9p-cta-btn:hover {
  background: var(--accent-sand);
    transform: translateY(-3px);
}

.vx2k-empty-state {
  min-height: 80vh;
  display: flex;
    align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.vx2k-empty-content {
  text-align: center;
    max-width: 620px;
  margin: 0 auto;
}

.vx2k-empty-icon {
  margin-bottom: 36px;
}

.vx2k-empty-icon .material-symbols-outlined {
    font-size: 80px;
  color: var(--accent-sand);
}

.vx2k-empty-title {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
    margin-bottom: 28px;
  letter-spacing: -2px;
}

.vx2k-empty-text {
  font-size: 20px;
  color: var(--secondary-dark);
    line-height: 1.6;
  margin-bottom: 16px;
}

.vx2k-empty-subtext {
  font-size: 17px;
    color: var(--accent-brown);
  margin-bottom: 44px;
  font-weight: 500;
}

.vx2k-empty-btn {
  display: inline-block;
    background: var(--accent-brown);
  color: #fff;
  padding: 18px 48px;
  border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vx2k-empty-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
}

.lm4r-article-hero {
    padding: 140px 0 60px 0;
}

.lm4r-article-hero-v1 {
  text-align: center;
  background: linear-gradient(180deg, rgba(198, 172, 143, 0.12) 0%, rgba(234, 224, 213, 0) 100%);
}

.lm4r-article-hero-v2 {
    background: var(--primary-dark);
  color: #fff;
}

.lm4r-article-hero-v3 {
  border-bottom: 3px solid var(--accent-brown);
}

.lm4r-article-meta {
    display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.lm4r-article-hero-v2 .lm4r-article-meta {
    opacity: 0.8;
}

.lm4r-meta-item {
  display: flex;
  align-items: center;
    gap: 8px;
  font-size: 14px;
  color: var(--accent-brown);
  font-weight: 500;
}

.lm4r-article-hero-v2 .lm4r-meta-item {
    color: var(--accent-sand);
}

.lm4r-meta-item .material-symbols-outlined {
  font-size: 18px;
}

.lm4r-article-title {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-dark);
    line-height: 1.15;
  max-width: 920px;
  margin: 0 auto 24px auto;
  letter-spacing: -2px;
}

.lm4r-article-hero-v2 .lm4r-article-title {
    color: #fff;
}

.lm4r-article-hero-v3 .lm4r-article-title {
  text-align: left;
  margin: 0 0 20px 0;
    font-size: 72px;
  letter-spacing: -3px;
}

.lm4r-article-subtitle {
  font-size: 22px;
    color: var(--secondary-dark);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
    font-weight: 300;
}

.lm4r-article-hero-v2 .lm4r-article-subtitle {
  color: rgba(234, 224, 213, 0.85);
}

.lm4r-article-hero-v3 .lm4r-article-subtitle {
    text-align: left;
  margin: 0;
  max-width: 680px;
}

.lm4r-article-body {
  padding: 80px 0 100px 0;
}

.lm4r-content-wrap {
    max-width: 780px;
  margin: 0 auto;
}

.lm4r-back-link {
  display: inline-flex;
    align-items: center;
  gap: 8px;
  color: var(--accent-brown);
  text-decoration: none;
    font-weight: 500;
  font-size: 15px;
  margin-bottom: 32px;
  transition: gap 0.3s ease;
}

.lm4r-back-link:hover {
    gap: 12px;
}

.lm4r-back-link .material-symbols-outlined {
  font-size: 20px;
}

.lm4r-content-wrap h2 {
    font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
    margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lm4r-style-alt h2 {
  font-size: 42px;
    border-left: 5px solid var(--accent-brown);
  padding-left: 24px;
}

.lm4r-style-bold h2 {
  background: linear-gradient(135deg, var(--accent-brown) 0%, var(--accent-sand) 100%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lm4r-content-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-top: 44px;
    margin-bottom: 16px;
  line-height: 1.4;
}

.lm4r-style-alt h3 {
  color: var(--accent-brown);
    text-transform: lowercase;
}

.lm4r-content-wrap p {
  font-size: 18px;
  color: var(--secondary-dark);
    line-height: 1.8;
  margin-bottom: 24px;
}

.lm4r-style-spacious p {
  font-size: 19px;
    line-height: 1.9;
  margin-bottom: 28px;
}

.lm4r-content-wrap strong {
  font-weight: 600;
  color: var(--primary-dark);
}

.lm4r-style-bold strong {
    background: var(--accent-sand);
  padding: 2px 6px;
  border-radius: 3px;
}

.lm4r-article-img {
  margin: 48px 0;
    border-radius: 12px;
  overflow: hidden;
}

.lm4r-style-frames .lm4r-article-img {
  border: 8px solid var(--light-bg);
    box-shadow: 0 12px 32px rgba(10, 9, 8, 0.1);
}

.lm4r-article-img img {
  width: 100%;
  height: auto;
    display: block;
}

.lm4r-highlight-box {
  background: rgba(198, 172, 143, 0.1);
  border-left: 4px solid var(--accent-brown);
    padding: 28px 32px;
  margin: 40px 0;
  border-radius: 8px;
}

.lm4r-style-alt .lm4r-highlight-box {
    background: var(--accent-brown);
  color: #fff;
  border-left: none;
  border-radius: 16px;
    padding: 36px 40px;
}

.lm4r-style-alt .lm4r-highlight-box p {
  color: #fff;
}

.lm4r-highlight-box p {
    margin-bottom: 0;
  font-size: 17px;
}

.lm4r-style-spacious .lm4r-highlight-box {
  font-size: 20px;
    font-style: italic;
  background: transparent;
  border-left: none;
  padding: 0 0 0 60px;
    position: relative;
}

.lm4r-style-spacious .lm4r-highlight-box::before {
  content: '"';
  position: absolute;
    left: 0;
  top: -20px;
  font-size: 120px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
    color: var(--accent-sand);
  line-height: 1;
}

.lm4r-pullquote {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent-brown);
    margin: 56px 0;
  padding: 0 60px;
  text-align: center;
}

.lm4r-sidenote {
  background: var(--light-bg);
    padding: 20px 24px;
  border-radius: 8px;
  margin: 32px 0;
  font-size: 16px;
    color: var(--secondary-dark);
}

@media (max-width: 1024px) {
  .kx9p-hero-split {
    gap: 60px;
  }

  .kx9p-hero-title {
        font-size: 60px;
  }

  .kx9p-articles-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .kx9p-card-large {
        grid-column: span 2;
  }

  .kx9p-card-wide {
    grid-column: span 2;
  }

  .kx9p-card-tall {
        grid-row: span 2;
  }

  .lm4r-article-title {
    font-size: 52px;
  }

  .lm4r-article-hero-v3 .lm4r-article-title {
        font-size: 60px;
  }

  .lm4r-content-wrap h2 {
    font-size: 32px;
  }

  .lm4r-pullquote {
    font-size: 28px;
        padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .kx9p-journal-hero {
    padding: 120px 0 60px 0;
  }

  .kx9p-hero-split {
        grid-template-columns: 1fr;
    gap: 40px;
  }

  .kx9p-hero-title {
    font-size: 48px;
  }

  .kx9p-hero-desc {
        font-size: 17px;
  }

  .kx9p-articles-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .kx9p-article-card {
        height: auto;
  }

  .kx9p-card-large,
  .kx9p-card-wide,
  .kx9p-card-tall {
    grid-column: 1;
        grid-row: auto;
  }

  .kx9p-card-content {
    padding: 32px;
  }

  .kx9p-card-large .kx9p-card-content {
        padding: 40px;
  }

  .kx9p-card-number {
    font-size: 56px;
    top: 24px;
        right: 24px;
  }

  .kx9p-card-large .kx9p-card-number {
    font-size: 80px;
    top: 32px;
        right: 32px;
  }

  .kx9p-card-title {
    font-size: 22px;
  }

  .kx9p-card-large .kx9p-card-title {
        font-size: 36px;
  }

  .kx9p-card-wide .kx9p-card-title {
    font-size: 24px;
  }

  .kx9p-cta-title {
        font-size: 36px;
  }

  .kx9p-cta-text {
    font-size: 16px;
  }

  .vx2k-empty-title {
    font-size: 48px;
  }

  .vx2k-empty-text {
        font-size: 18px;
  }

  .lm4r-article-hero {
    padding: 120px 0 50px 0;
  }

  .lm4r-article-meta {
        flex-direction: column;
    gap: 12px;
  }

  .lm4r-article-title {
    font-size: 38px;
  }

  .lm4r-article-hero-v3 .lm4r-article-title {
        font-size: 42px;
  }

  .lm4r-article-subtitle {
    font-size: 18px;
  }

  .lm4r-article-body {
        padding: 60px 0 80px 0;
  }

  .lm4r-content-wrap h2 {
    font-size: 28px;
    margin-top: 44px;
  }

  .lm4r-style-alt h2 {
        font-size: 32px;
  }

  .lm4r-content-wrap h3 {
    font-size: 22px;
  }

  .lm4r-content-wrap p {
        font-size: 17px;
  }

  .lm4r-highlight-box {
    padding: 20px 24px;
  }

  .lm4r-style-alt .lm4r-highlight-box {
        padding: 28px 32px;
  }

  .lm4r-pullquote {
    font-size: 24px;
    padding: 0 20px;
        margin: 44px 0;
  }

  .lm4r-style-spacious .lm4r-highlight-box {
    padding: 0 0 0 40px;
  }

  .lm4r-style-spacious .lm4r-highlight-box::before {
        font-size: 80px;
  }
}

@media (max-width: 480px) {
  .kx9p-hero-title {
    font-size: 38px;
  }

  .kx9p-card-content {
        padding: 28px;
  }

  .kx9p-card-large .kx9p-card-content {
    padding: 32px;
  }

  .kx9p-card-large .kx9p-card-title {
        font-size: 32px;
  }

  .vx2k-empty-title {
    font-size: 36px;
  }

  .lm4r-article-title {
        font-size: 32px;
  }

  .lm4r-article-hero-v3 .lm4r-article-title {
    font-size: 36px;
  }

  .lm4r-content-wrap h2 {
        font-size: 24px;
  }

  .lm4r-pullquote {
    font-size: 20px;
  }
}

.xpk9-contact-main {
  padding-top: 82px;
}

.xpk9-contact-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, rgba(198, 172, 143, 0.3) 100%);
  padding: 80px 0 60px 0;
  text-align: center;
}

.xpk9-contact-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.xpk9-contact-hero p {
  font-size: 19px;
  color: var(--secondary-dark);
  font-weight: 400;
}

.xpk9-contact-grid {
    padding: 100px 0;
}

.xpk9-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  align-items: start;
}

.xpk9-info-block h2,
.xpk9-form-block h2 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.xpk9-info-item {
    display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.xpk9-info-item .material-symbols-outlined {
  font-size: 26px;
    color: var(--accent-brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.xpk9-info-content {
  display: flex;
    flex-direction: column;
  gap: 6px;
}

.xpk9-label {
  font-size: 12px;
  text-transform: uppercase;
    letter-spacing: 1px;
  color: var(--accent-brown);
  font-weight: 600;
}

.xpk9-info-content a {
  font-size: 17px;
    color: var(--secondary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.xpk9-info-content a:hover {
  color: var(--accent-brown);
}

.xpk9-info-content span {
    font-size: 16px;
  color: var(--secondary-dark);
  line-height: 1.6;
}

.xpk9-hours {
  margin-top: 48px;
    padding-top: 32px;
  border-top: 2px solid rgba(198, 172, 143, 0.3);
}

.xpk9-hours h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
    font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.xpk9-hours p {
  font-size: 15px;
    color: var(--secondary-dark);
  line-height: 1.8;
}

.xpk9-form {
  display: flex;
  flex-direction: column;
    gap: 24px;
}

.xpk9-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.xpk9-form-group {
    position: relative;
}

.xpk9-form-group input,
.xpk9-form-group textarea,
.xpk9-form-group select {
  width: 100%;
    padding: 16px 18px;
  border: 2px solid rgba(94, 80, 63, 0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
    color: var(--primary-dark);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.xpk9-form-group input:focus,
.xpk9-form-group textarea:focus,
.xpk9-form-group select:focus {
    outline: none;
  border-color: var(--accent-brown);
  box-shadow: 0 0 0 3px rgba(94, 80, 63, 0.1);
}

.xpk9-form-group label {
    position: absolute;
  left: 18px;
  top: 16px;
  font-size: 15px;
  color: rgba(34, 51, 59, 0.6);
    background: #fff;
  padding: 0 6px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.xpk9-form-group input:focus + label,
.xpk9-form-group textarea:focus + label,
.xpk9-form-group select:focus + label,
.xpk9-form-group input:not(:placeholder-shown) + label,
.xpk9-form-group textarea:not(:placeholder-shown) + label,
.xpk9-form-group select:not([value=""]) + label {
    top: -10px;
  font-size: 13px;
  color: var(--accent-brown);
}

.xpk9-form-group textarea {
  resize: vertical;
    min-height: 140px;
}

.xpk9-submit-btn {
  background: var(--accent-brown);
  color: #fff;
  border: none;
    padding: 18px 40px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
    cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    gap: 10px;
  align-self: flex-start;
}

.xpk9-submit-btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.xpk9-submit-btn .material-symbols-outlined {
    font-size: 20px;
}

.xpk9-map-section {
  margin-top: 60px;
  margin-bottom: 100px;
}

.xpk9-map-container {
    height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 9, 8, 0.12);
}

.rtm4-legal-main {
    padding-top: 82px;
  min-height: 80vh;
}

.rtm4-legal-wrapper {
  max-width: 860px;
  margin: 0 auto;
    padding: 80px 0 120px 0;
}

.rtm4-legal-header {
  text-align: center;
  margin-bottom: 60px;
    padding-bottom: 40px;
  border-bottom: 3px solid rgba(198, 172, 143, 0.3);
}

.rtm4-legal-header h1 {
  font-family: 'Space Grotesk', sans-serif;
    font-size: 52px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}

.rtm4-updated {
    font-size: 14px;
  color: rgba(34, 51, 59, 0.6);
  text-transform: lowercase;
}

.rtm4-legal-content {
  margin-bottom: 60px;
}

.rtm4-section {
    margin-bottom: 48px;
}

.rtm4-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
    font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.rtm4-section p {
    font-size: 17px;
  line-height: 1.8;
  color: var(--secondary-dark);
  margin-bottom: 18px;
}

.rtm4-section p:last-child {
    margin-bottom: 0;
}

.rtm4-legal-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
    padding-top: 40px;
  border-top: 2px solid rgba(198, 172, 143, 0.3);
}

.rtm4-legal-footer a {
  font-size: 15px;
    color: var(--accent-brown);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.rtm4-legal-footer a:hover {
    color: var(--secondary-dark);
}

@media (max-width: 1024px) {
  .xpk9-grid-wrapper {
    gap: 60px;
  }

  .xpk9-contact-hero h1 {
        font-size: 48px;
  }
}

@media (max-width: 768px) {
  .xpk9-contact-hero {
    padding: 60px 0 40px 0;
  }

  .xpk9-contact-hero h1 {
        font-size: 36px;
  }

  .xpk9-contact-grid {
    padding: 60px 0;
  }

  .xpk9-grid-wrapper {
    grid-template-columns: 1fr;
        gap: 50px;
  }

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

  .xpk9-map-container {
    height: 350px;
  }

  .rtm4-legal-wrapper {
        padding: 60px 0 80px 0;
  }

  .rtm4-legal-header h1 {
    font-size: 38px;
  }

  .rtm4-section h2 {
    font-size: 24px;
  }

  .rtm4-legal-footer {
        flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .xpk9-contact-hero h1 {
        font-size: 28px;
  }

  .xpk9-contact-hero p {
    font-size: 17px;
  }

  .xpk9-info-block h2,
  .xpk9-form-block h2 {
        font-size: 26px;
  }

  .xpk9-submit-btn {
    width: 100%;
  }

  .rtm4-legal-header h1 {
    font-size: 32px;
  }
}

.bjw8-thankyou-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 9, 8, 0.15);
  padding: 60px 50px;
  max-width: 560px;
  text-align: center;
}

.bjw8-icon {
  width: 80px;
  height: 80px;
  background: #5e503f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.bjw8-icon.error {
  background: #d32f2f;
}

.bjw8-icon .material-symbols-outlined {
  font-size: 44px;
  color: #fff;
}

.bjw8-thankyou-container h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #0a0908;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.bjw8-thankyou-container p {
  font-size: 17px;
  color: #22333b;
  line-height: 1.7;
  margin-bottom: 40px;
}

.bjw8-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5e503f;
  color: #fff;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.bjw8-home-btn:hover {
  background: #22333b;
  transform: translateY(-2px);
}

.bjw8-home-btn .material-symbols-outlined {
  font-size: 20px;
}

.bjw8-back-btn {
  background: transparent;
  color: #5e503f;
  border: 2px solid #5e503f;
  margin-left: 12px;
}

.bjw8-back-btn:hover {
  background: #5e503f;
  color: #fff;
}

@media (max-width: 600px) {
  .bjw8-thankyou-container {
    padding: 40px 30px;
  }

  .bjw8-thankyou-container h1 {
    font-size: 28px;
  }

  .bjw8-thankyou-container p {
    font-size: 16px;
  }
  
  .bjw8-back-btn {
    margin-left: 0;
    margin-top: 12px;
  }
}
