.nav-links a {
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  color: var(--text-body);
  font-size: var(--text-s);
  font-weight: 600;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

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

.nav-cta:hover {
  background-color: var(--primary-d-1);
}

.btn-primary:hover {
  background-color: var(--primary-l-1);
  transform: translateY(-2px);
}

.btn-outline:hover {
  border-color: var(--light);
  background-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-primary);
}

.about-list li {
  font-size: var(--text-m);
  color: var(--text-title);
  font-weight: 600;
  padding-left: var(--space-m);
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0px;
  color: var(--primary);
  font-weight: 700;
}

.btn-dark:hover {
  background-color: rgb(51, 51, 51);
}

.testimonials .section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-title);
  text-align: center;
  margin: 0 0 var(--space-2xl) 0;
}

.btn-white:hover {
  background-color: var(--primary-d-1);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0px auto;
}

.footer-logo .logo-icon {
  color: var(--tertiary);
}

.footer-links {
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.footer-links a {
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  font-size: var(--text-m);
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
  color: var(--text-body) !important;
}

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

.footer-bottom {
  padding-top: var(--space-l);
  text-align: center;
  font-size: var(--text-s);
}

.footer-bottom p {
  margin: 0px;
}

@media (max-width: 768px) {
  .footer-brand {
  grid-column-start: 1;
  grid-column-end: -1;
  }
}

.atomik-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: var(--font-body);
  background-color: rgb(51, 51, 51);
}

@media (max-width: 768px) {
  .atomik-hero {
  min-height: 360px;
  }
}

.btn-hero:hover {
  background-color: var(--primary-l-1);
}

.hero-bar:nth-child(1) {
  width: 120px;
}

.hero-bar:nth-child(2) {
  width: 100px;
}

.hero-bar:nth-child(3) {
  width: 80px;
}

.hero-bar:nth-child(4) {
  width: 140px;
}

.hero-bar:nth-child(5) {
  width: 90px;
}

.content-section {
  padding: var(--space-2xl) var(--space-m);
  font-family: var(--font-body);
  background-color: rgb(255, 255, 255) !important;
}

.content-inner {
  max-width: 1000px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .content-inner {
  grid-template-columns: 1fr;
  }
}

.content-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 var(--space-m) 0;
}

.content-desc {
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 var(--space-m) 0;
}

.btn-learn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  padding: var(--space-2xs) var(--space-m);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: var(--text-s);
  font-weight: 600;
}

.content-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.content-image {
  position: relative;
  min-height: 300px;
}

.what-we-do {
  padding: var(--space-2xl) var(--space-m);
  font-family: var(--font-body);
  text-align: center;
  background-color: rgb(247, 248, 250) !important;
}

.wdo-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-title);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 var(--space-s) 0;
}

.wdo-desc {
  font-size: var(--text-s);
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto var(--space-xl) auto;
  line-height: 1.6;
}

.wdo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0px auto;
}

@media (max-width: 768px) {
  .wdo-grid {
  grid-template-columns: 1fr;
  gap: var(--space-l);
  }
}

.wdo-card {
  text-align: center;
}

.wdo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-m) auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-sphere {
  width: 48px;
  height: 48px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(135deg, rgb(192, 57, 43) 0%, rgb(231, 76, 60) 50%, rgb(192, 57, 43) 100%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.icon-pen {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(135deg, rgb(192, 57, 43) 0%, rgb(231, 76, 60) 100%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  clip-path: polygon(50% 0%, 100% 80%, 60% 100%, 0px 100%);
}

.icon-cycles {
  width: 48px;
  height: 48px;
  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: rgb(231, 76, 60);
  border-right-width: 4px;
  border-right-style: solid;
  border-right-color: rgb(231, 76, 60);
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(231, 76, 60);
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-color: transparent;
}

.wdo-label {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0 0 var(--space-2xs) 0;
}

.wdo-card-text {
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
  margin: 0px;
}

.product-grid-section {
  background-color: rgb(255, 255, 255) !important;
  padding: 0px !important;
  margin: 0px !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0px;
  column-gap: 0px;
}

@media (max-width: 768px) {
  .product-grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

.product-tile {
  position: relative;
  aspect-ratio: 1.3 / 1;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: rgb(255, 255, 255) !important;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.product-tile:hover .product-img {
  transform: scale(1.05);
}

.override-section {
  position: relative;
  width: 100%;
  font-family: var(--font-body);
  background-color: rgb(247, 248, 250) !important;
}

.override-image {
  width: 100%;
  min-height: 350px;
  max-width: 600px;
  margin: var(--space-xl) auto 0 auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.override-img {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-dark {
  position: relative;
  padding: var(--space-xl) var(--space-m);
  text-align: center;
  margin: 0px auto;
  max-width: 700px;
  background-color: rgba(38, 38, 38, 0.85);
}

.override-title {
  font-family: var(--font-heading);
  font-size: var(--text-l);
  font-weight: 700;
  line-height: 1.3;
  margin: 0px;
  letter-spacing: 1px;
  color: var(--text-title);
}

@media (max-width: 768px) {
  .override-title {
  font-size: var(--text-m);
  }
}

.override-text {
  max-width: 700px;
  margin: var(--space-m) auto;
  padding: 0 var(--space-m);
}

.override-desc {
  font-size: var(--text-s);
  line-height: 1.6;
  text-align: center;
  margin: 0px;
  color: var(--text-body);
}

.content-flipped .content-inner {
  text-align: left;
  direction: ltr;
}

.content-flipped .content-text {
  direction: ltr;
}

.content-flipped .content-image {
  direction: ltr;
  min-height: 300px;
}

.full-bleed-hero {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0px !important;
  margin: 0px !important;
  background-color: rgb(255, 255, 255) !important;
}

.full-img {
  width: 100%;
  display: block;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
}

@media (max-width: 768px) {
  .full-img {
  height: 240px;
  }
}

.dark-cta {
  padding: var(--space-xl) var(--space-m);
  text-align: center;
  font-family: var(--font-body);
  background-color: rgb(247, 248, 250) !important;
}

.cta-inner2 {
  max-width: 700px;
  margin: 0px auto;
}

.cta-h {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 0 var(--space-s) 0;
  color: var(--text-title);
}

.cta-p {
  font-size: var(--text-s);
  line-height: 1.6;
  margin: 0px;
  color: var(--text-body);
}

.blog-section {
  padding: var(--space-2xl) var(--space-m);
  font-family: var(--font-body);
  background-color: rgb(247, 248, 250) !important;
}

.blog-inner {
  max-width: 1000px;
  margin: 0px auto;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-title);
  text-align: center;
  margin: 0 0 var(--space-xl) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

@media (max-width: 768px) {
  .blog-grid {
  grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--bg-surface);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow-x: hidden;
  overflow-y: hidden;
  box-shadow: 0 2px 8px var(--shadow-primary);
  background-color: rgb(255, 255, 255) !important;
}

.blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: var(--space-m);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 700;
  color: var(--text-title);
  margin: 0 0 var(--space-2xs) 0;
  line-height: 1.3;
}

.blog-date {
  font-size: var(--text-xs);
  color: var(--text-body);
}

.logo-strip {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  border-top: 1px solid var(--border-primary);
  background-color: rgb(255, 255, 255) !important;
  padding: var(--space-xl) var(--space-m) !important;
  margin: 0px !important;
}

@media (max-width: 768px) {
  .logo-strip {
  flex-wrap: wrap;
  gap: var(--space-m);
  }
}

.logo-item {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(102, 102, 102);
}

.quote-section {
  position: relative;
  padding: var(--space-2xl) var(--space-m);
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(135deg, rgb(201, 169, 110) 0%, rgb(160, 124, 62) 100%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  text-align: center;
  font-family: var(--font-body);
}

.quote-inner {
  max-width: 600px;
  margin: 0px auto;
}

.quote-text {
  font-size: var(--text-m);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 var(--space-l) 0;
  color: rgba(38, 38, 38, 0.9);
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-m);
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgba(77, 77, 77, 0.6);
}

.quote-name {
  font-size: var(--text-s);
  font-weight: 600;
  color: rgba(38, 38, 38, 0.9);
}

.footer {
  font-family: var(--font-body);
  background-color: rgb(247, 248, 250) !important;
  padding: var(--space-xl) var(--space-m) var(--space-l) !important;
  margin: 0px !important;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-l);
}

@media (max-width: 768px) {
  .footer-main {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-m);
}

.footer-logo-icon {
  font-size: var(--text-xl);
  color: var(--primary);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-l);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-title);
}

.footer-links-v {
  flex-direction: column;
}

.footer-tag {
  display: block;
  font-size: var(--text-xs);
  margin-top: var(--space-m);
  color: rgb(128, 128, 128);
}

.footer-newsletter-text {
  font-size: var(--text-s);
  line-height: 1.5;
  margin: 0 0 var(--space-m) 0;
  color: var(--text-body);
}

.btn-footer {
  display: inline-block;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  padding: var(--space-2xs) var(--space-m);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: var(--text-s);
  font-weight: 600;
  background-color: var(--primary);
  color: var(--light);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgb(128, 128, 128);
}

html, body {
  margin: 0px;
  padding: 0px;
}

.wdo-card-text, .content-desc, .content-title, .wdo-title, .blog-card-title, .blog-title, .wdo-label {
  color: var(--text-title) !important;
}

.wdo-card-text, .content-desc, .blog-date {
  color: var(--text-body) !important;
}

.footer-logo-text, .footer-logo-icon {
  color: var(--text-title) !important;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 660px;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: rgb(26, 26, 46);
  font-family: var(--font-body);
  margin: 0px;
  padding: 0px;
}

@media (max-width: 768px) {
  .hero-slider {
  height: 380px;
  }
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-behavior: normal;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  transform: scale(1.05);
  transition-property: transform;
  transition-duration: 6s;
  transition-timing-function: ease-out;
  transition-delay: 0s;
  transition-behavior: normal;
  display: block;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slider-dots {
  position: absolute;
  bottom: var(--space-m);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2xs);
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.dot.active {
  background: var(--light);
}

.override-desc, .dark-cta .cta-h, .dark-cta .cta-p {
  color: var(--text-body);
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

section {
  margin: 0px !important;
  padding: var(--space-2xl) var(--space-m) !important;
}

.slide:first-child {
  opacity: 1;
}

.content-flipped .content-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}