/* style.less */
.redshine {
  box-shadow: 0 0 10px red;
}
.hidden {
  display: none;
}
:root {
  --max-width: 2500px;
  --header-height-full: 180px;
  --header-height-small: 80px;
  --logo-width-full: 600px;
  --logo-height-full: 120px;
}
body {
  font-family: 'Inter Tight', sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  margin: 0;
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: left;
  margin-bottom: 1rem;
  font-weight: 700;
}
.center h1,
.center h2,
.center h3,
.center h4,
.center h5,
.center h6,
.center p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
p {
  margin-bottom: 1rem;
  line-height: 1.2;
}
a,
a:visited {
  color: #0064ff;
}
b,
strong {
  font-weight: 700;
}
.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}
/* Header */
header.home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform, height, background;
  transform: translateZ(0);
  transition: all 0.4s ease;
  height: var(--header-height-full);
  display: flex;
  align-items: center;
  background: transparent;
}
header.home .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
header.home .logo {
  display: block;
}
header.home .logo img {
  height: var(--logo-height-full);
  width: 600px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: all 0.4s ease;
}
header.home nav ul {
  display: flex;
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0;
  gap: 20px;
  align-items: center;
}
header.home .nav-item {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
}
header.home .nav-item .title {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 10px 5px;
}
header.home .nav-item .subtitle {
  font-size: 14px;
  padding: 5px 10px 10px;
  opacity: 0.8;
  white-space: nowrap;
}
header.home .nav-item:hover {
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
header.home nav li:nth-child(1) .nav-item {
  border-bottom: 4px solid #ff6200;
}
header.home nav li:nth-child(2) .nav-item {
  border-bottom: 4px solid #00adcf;
}
header.home nav li:nth-child(3) .nav-item {
  border-bottom: 4px solid #c69700;
}
header.home nav li:nth-child(4) .nav-item {
  border-bottom: 4px solid #488f00;
}
header.home nav li:nth-child(5) .nav-item {
  border-bottom: 4px solid #880098;
}
@media screen and (min-width: 970.1px) {
  header.home.scrolled {
    height: var(--header-height-small);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  header.home.scrolled .nav-item {
    color: #333;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-left-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    background-color: #ecf2f4;
  }
  header.home.scrolled .nav-item .title {
    padding-top: 5px;
    border-bottom-color: rgba(0, 0, 0, 0.3);
  }
  header.home.scrolled .nav-item .subtitle {
    padding-bottom: 5px;
  }
  header.home.scrolled .nav-item:hover {
    border-top-color: rgba(0, 0, 0, 0.6);
    border-left-color: rgba(0, 0, 0, 0.6);
    border-right-color: rgba(0, 0, 0, 0.6);
    background-color: #fff;
  }
  header.home.scrolled .logo img {
    width: 450px;
  }
}
/* Hero Section */
.variableColor {
  transition: color 1s ease;
  color: transparent;
}
.rotating-word {
  display: inline-block;
  opacity: 0;
}
.rotating-word.visible {
  opacity: 1;
  transition: color, opacity 2s ease;
}
#rotatingWordContainer {
  min-width: 8.5em;
  display: inline-block;
}
#rotatingWords {
  position: relative;
  display: inline-block;
}
#rotatingWords:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  transform: scaleX(1.05);
  height: clamp(10px, 3vw, 40px);
  border-style: solid;
  border-color: currentColor;
  border-left-width: 0;
  border-top-width: 0;
  border-bottom-width: 5px;
  border-right-width: 0;
  border-radius: 50%;
  z-index: -1;
}
#hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  max-height: min(calc(100vh - 300px), 1000px);
  background-color: #020208;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}
#hero #nebulaCanvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#hero #nebulaCanvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 100%;
}
#hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px 0;
  max-width: 1600px;
}
#hero .hero-content h1 {
  font-size: clamp(40px, 4vw, 96px);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  font-weight: 900;
}
#hero .hero-content h1 em {
  font-family: 'Verdana', sans-serif;
}
#hero .hero-content h2 {
  color: #3bddff;
  font-size: clamp(16px, 1.66vw, 32px);
  line-height: 1.1;
  margin-top: 2vw;
  font-weight: 600;
}
#hero .hero-content p {
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.5;
  max-width: 1360px;
}
#hero .download-overlay {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  will-change: transform;
  transform: translateZ(0);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}
#hero .download-overlay p {
  margin: 0 0 10px 0;
  font-size: 14px;
}
#hero .download-overlay #downloadBtn {
  background: #126e9c;
  color: #fff;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}
#hero .download-overlay #downloadBtn:hover {
  background: #2795cc;
}
#hero .download-overlay #download-screenshot {
  position: absolute;
  bottom: 100%;
  right: 30px;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transition: none;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
  width: 200px;
  height: var(--target-height, auto);
}
#hero .download-overlay #download-screenshot.animating {
  visibility: visible;
  opacity: 1;
  animation: screenshot-pulse 0.5s ease-out forwards;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#hero .download-overlay #download-screenshot.visible {
  visibility: visible;
  opacity: 1;
  width: 200px !important;
  height: var(--target-height) !important;
  position: fixed;
  right: 30px;
  bottom: 110px;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#hero .download-overlay #download-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}
#hero .download-overlay #download-screenshot.animating img,
#hero .download-overlay #download-screenshot.visible img {
  opacity: 1;
}
@keyframes screenshot-pulse {
  0% {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 0;
    background: #fff;
    opacity: 1;
  }
  100% {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 200px;
    height: var(--target-height, auto);
    background: #fff;
  }
}
/* Footer */
.footer-decor {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-98%);
  aspect-ratio: 10000 / 1310;
  background: url(../images/city.webp) bottom center no-repeat;
  background-size: cover;
  pointer-events: none;
}
.footer-decor:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 30px;
  height: 77%;
  background: #333;
}
.footer-decor:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 76%;
  right: 5.1%;
  width: 3%;
  height: 40%;
  background: url(../images/city2.webp) bottom center no-repeat;
  background-size: contain;
  animation: city2 3s ease-in-out infinite;
  animation-direction: alternate;
}
@keyframes city2 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-10%);
  }
}
@property --footer-hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 240;
}
@keyframes footer-hue-rotate {
  from {
    --footer-hue: 240;
  }
  to {
    --footer-hue: 600;
  }
}
footer {
  color: hsl(var(--footer-hue), 68%, 10%);
  animation: footer-hue-rotate 30s linear infinite;
  background: linear-gradient(to bottom, #000, #00000000), currentColor;
  border-left: 15px solid #333;
  padding: 100px 0 60px 0;
  position: relative;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  color: white;
  margin: 0 auto;
}
footer .footer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 820px;
}
footer .footer-brand h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}
footer .footer-brand h3 em {
  color: #6ec5d2;
  margin-right: 5px;
}
footer .footer-brand h3 em + em {
  color: #fff;
}
footer .footer-brand h3 em + em + em {
  color: #8ca3a6;
}
footer .footer-brand .footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #999;
  max-width: 600px;
  margin-bottom: 20px;
}
footer .footer-brand .footer-contact-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer .footer-brand .footer-contact-info .footer-contact-direct {
  margin: 0;
  font-size: 14px;
  color: #888;
}
footer .footer-brand .footer-contact-info .footer-contact-direct span {
  margin-right: 6px;
}
footer .footer-brand .footer-contact-info .footer-contact-direct a {
  color: #00adcf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
footer .footer-brand .footer-contact-info .footer-contact-direct a:hover {
  color: #1ddaff;
  text-decoration: underline;
}
footer .footer-brand .footer-contact-info .footer-cta-btn {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
footer .footer-brand .footer-contact-info .footer-cta-btn:hover {
  background: #880098;
  border-color: #880098;
  color: #fff;
}
footer .footer-links {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}
footer .footer-links .footer-col {
  flex: 1;
  min-width: 140px;
}
footer .footer-links .footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-links .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-links .footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.4;
}
footer .footer-links .footer-col a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
footer .footer-links .footer-col a:hover {
  color: white;
}
footer .footer-links .footer-col-promise {
  min-width: 180px;
}
footer .footer-links .footer-col-promise .footer-promise-list li {
  color: #777;
  margin-bottom: 12px;
  line-height: 1.4;
}
footer .footer-links .footer-col-promise .footer-promise-list li strong {
  color: #ccc;
  font-weight: 600;
  display: block;
  font-size: 13px;
}
footer .footer-logo {
  width: 600px;
  max-width: 45%;
  display: flex;
  justify-content: flex-end;
  align-self: center;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
footer .footer-logo img:hover {
  opacity: 1;
}
footer .footer-copyright {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: #ffffff66;
  line-height: 1.6;
}
footer .footer-copyright p {
  margin-bottom: 8px;
}
footer .footer-copyright p:last-child {
  margin-bottom: 0;
}
#sizeIndicator,
#fpsIndicator {
  position: fixed;
  right: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  font-size: 10px;
  z-index: 10000;
  pointer-events: none;
}
#sizeIndicator {
  bottom: 10px;
}
#fpsIndicator {
  bottom: 35px;
}
#sidenav {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  top: 100px;
  left: 16px;
  padding: 0px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#sidenav.visible {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s ease;
}
#sidenav a {
  display: block;
  margin-bottom: 2px;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-left: 0px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
#sidenav a span {
  display: none;
}
#sidenav a strong {
  display: none;
}
#sidenav a.selected {
  margin-left: 0;
  padding: 0 20px 0 10px;
}
#sidenav a.selected span {
  display: block;
}
#sidenav a.selected strong {
  display: none;
}
#sidenav a:hover {
  padding: 0 20px 0 10px;
}
#sidenav a:hover span {
  display: none;
}
#sidenav a:hover strong {
  display: block;
}
#sidenav a.selected:hover {
  padding-left: 10px;
}
#sidenav a#sb1 {
  background: #ff6200;
}
#sidenav a#sb2 {
  background: #00adcf;
}
#sidenav a#sb3 {
  background: #c69700;
}
#sidenav a#sb4 {
  background: #488f00;
}
#sidenav a#sb5 {
  background: #880098;
}
.external-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.external-link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 14px;
  height: 14px;
}
.external-link:hover {
  opacity: 0.8;
}
/* Content Sections */
.narrow-body {
  max-width: 1520px;
  margin: 0 auto;
}
.narrower-body {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px auto 0;
}
.portfolio-older-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 50px auto 0;
}
.portfolio-oldest-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 50px auto 0;
  position: relative;
}
.portfolio-oldest-grid .overshadow {
  transform: scale(1.02);
  padding-bottom: 8%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #00adcf;
  clip-path: polygon(0 80%, 100% 10%, 100% 100%, 0 100%);
}
.portfolio-oldest-grid .overshadow:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(1.01);
  background: #d5d5d5;
  clip-path: polygon(0 82%, 100% 25%, 100% 100%, 0 100%);
}
.portfolio-item {
  display: flex;
  flex-direction: column;
}
.portfolio-item .thumb-link {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.portfolio-item .thumb-link:hover {
  box-shadow: 0 0 0 5px #00adcf;
}
.portfolio-item .thumb-container {
  aspect-ratio: 480 / 267;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.portfolio-item .thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-item .item-info .item-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1;
  color: #333;
}
.portfolio-item .item-info .sub-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.portfolio-item .item-info .sub-pages .sub-link {
  display: inline-block;
  padding: 4px 12px;
  background-color: #e0e0e0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.portfolio-item .item-info .sub-pages .sub-link:hover {
  background-color: #00adcf;
  color: white;
}
.portfolio-older-grid .portfolio-item .item-info .item-name {
  font-size: 15px;
}
.portfolio-older-grid .portfolio-item .item-info .sub-pages {
  gap: 3px;
}
.portfolio-older-grid .portfolio-item .item-info .sub-pages .sub-link {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.oldest-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 480 / 267;
}
.oldest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.oldest-item .oldest-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px;
  text-align: center;
  backdrop-filter: blur(2px);
}
.clients-served-count {
  margin-top: 0px;
  color: #000;
  text-align: right;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  top: -40px;
}
section.content-section {
  padding: 120px 0;
}
section.content-section .container {
  padding-left: 60px;
  padding-right: 60px;
}
section.content-section.white {
  background-color: #ffffff;
}
section.content-section.gray {
  background-color: #f5f5f5;
}
section.content-section.darkgray {
  background-color: #e5e5e5;
}
section.content-section.darkergray {
  background-color: #d5d5d5;
}
section.content-section.darkestgray {
  background-color: #c5c5c5;
}
section.content-section .section-title {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1.2;
}
section.content-section .center {
  text-align: center;
}
section.content-section h3 {
  font-size: 24px;
  margin-top: 0;
}
section.content-section p {
  font-size: 17px;
  font-weight: 400;
}
section.content-section {
  border-left-width: 16px;
  border-left-style: solid;
}
section.sb1 {
  border-left-color: #ff6200;
}
section.sb1 h3 {
  color: #d95300;
}
section.sb2 {
  border-left-color: #00adcf;
}
section.sb2 h3 {
  color: #0093b0;
}
section.sb3 {
  border-left-color: #c69700;
}
section.sb3 h3 {
  color: #a88000;
}
section.sb4 {
  border-left-color: #488f00;
}
section.sb4 h3 {
  color: #3d7a00;
}
section.sb5 {
  border-left-color: #880098;
  padding-bottom: 6vw;
}
section.sb5 h3 {
  color: #740081;
}
.checkers-1 {
  background: url(../images/checkers-1.png) top left no-repeat;
  background-size: 400px;
}
.checkers-2 {
  background: url(../images/checkers-2.png) top left no-repeat;
  background-size: 400px;
}
.checkers-3 {
  background: url(../images/checkers-3.png) top left no-repeat;
  background-size: 400px;
}
.checkers-4 {
  background: url(../images/checkers-4.png) top left no-repeat;
  background-size: 400px;
}
.checkers-5 {
  background: url(../images/checkers-5.png) top left no-repeat;
  background-size: 400px;
}
.half-sections {
  display: flex;
  justify-content: space-between;
  gap: clamp(15px, 2vw, 35px);
}
.half-section {
  width: 45%;
  flex: 1;
}
.pricing-boxes {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  align-items: stretch;
}
.pricing-boxes .pricing-box {
  flex: 1;
  background: #f9f9f9;
  padding: 20px 40px;
}
.pricing-boxes .pricing-box h4 {
  font-size: 22px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 5px 20px 5px 0;
}
.pricing-boxes .pricing-box .price {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #000;
}
.pricing-boxes .pricing-box .price strong {
  display: block;
  font-size: 170%;
  padding: 20px 0;
  font-weight: 600;
}
.pricing-boxes .pricing-box .fineprint {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}
.pricing-boxes .pricing-box .plan-details {
  display: flex;
  gap: 20px;
  margin-top: auto;
}
.pricing-boxes .pricing-box .plan-details .detail-column {
  flex: 1;
}
.pricing-boxes .pricing-box .plan-details .detail-column h5 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 400;
  display: block;
}
.pricing-boxes .pricing-box .plan-details .detail-column h5:after {
  content: "";
  display: none;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.pricing-boxes .pricing-box .plan-details .detail-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-boxes .pricing-box .plan-details .detail-column ul li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.1;
  padding-bottom: 10px;
}
.pricing-boxes .pricing-box .plan-details .detail-column ul li:not(:last-child) {
  border-bottom: 1px dotted #666;
}
.pricing-boxes .pricing-box .plan-details .detail-column ul li h6 {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}
.pricing-boxes .pricing-box .plan-details .detail-column ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 12px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80px' height='120px'%3E%3Cpath fill-rule='evenodd' fill='rgb(72, 143, 0)' d='M-0.000,-0.000 L40.000,-0.000 L40.000,120.000 L-0.000,120.000 L-0.000,79.1000 L80.000,79.1000 L80.000,40.000 L-0.000,40.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-boxes .plan-standard {
  border-top: 5px solid #488f00;
  border-bottom: 3px solid #488f00;
}
.pricing-boxes .plan-standard h4 {
  color: #488f00;
  background: #e1ead7;
  box-shadow: -37px 0 0 #e1ead7, -40px 0 0 #488f00;
}
.pricing-boxes .plan-standard .price strong {
  color: #3b7600;
}
.pricing-boxes .plan-standard .plan-details .detail-column h5 {
  color: #488f00;
}
.pricing-boxes .plan-complete {
  border-top: 5px solid #00adcf;
  border-bottom: 3px solid #00adcf;
}
.pricing-boxes .plan-complete h4 {
  color: #00adcf;
  background: #e0ecee;
  box-shadow: -37px 0 0 #e0ecee, -40px 0 0 #00adcf;
}
.pricing-boxes .plan-complete .price strong {
  color: #00829c;
}
.pricing-boxes .plan-complete .plan-details .detail-column h5 {
  color: #00adcf;
}
.pricing-boxes .plan-complete .plan-details .detail-column ul li:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80px' height='120px'%3E%3Cpath fill-rule='evenodd' fill='rgb(0, 173, 207)' d='M-0.000,-0.000 L40.000,-0.000 L40.000,120.000 L-0.000,120.000 L-0.000,79.1000 L80.000,79.1000 L80.000,40.000 L-0.000,40.000 L-0.000,-0.000 Z'/%3E%3C/svg%3E");
}
.pricing-boxes .plan-custom {
  border-top: 5px solid #ff6200;
  border-bottom: 3px solid #ff6200;
  flex: 0 1 350px;
  background: #eee;
}
.pricing-boxes .plan-custom .custom-work-boxes {
  font-size: 15px;
  color: #555;
  font-weight: 500;
  line-height: 1.2em;
}
.pricing-boxes .plan-custom h4 {
  color: #ff6200;
  background: #e4d6cd;
  box-shadow: -37px 0 0 #e4d6cd, -40px 0 0 #ff6200;
}
.feature-boxes {
  display: flex;
  gap: 30px;
}
.feature-boxes .feature-box {
  flex: 1;
  min-width: 250px;
}
.feature-boxes .feature-box svg {
  margin-bottom: 15px;
}
.feature-boxes .feature-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
}
.feature-boxes .feature-box p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.4;
}
#ai-examples-gallery {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.ai-sample-intro {
  border: 5px solid #fff;
  box-shadow: 0 0 0px 7px rgba(0, 0, 0, 0.5);
  position: relative;
  top: -5px;
}
.external-link {
  cursor: pointer;
}
.show-under-600 {
  display: none;
}
.contact-form {
  margin: 40px auto;
  max-width: 800px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #880098;
  border-bottom: 3px solid #880098;
}
.contact-form.error {
  background: #fee;
  animation: errorFade 3s linear forwards;
}
@keyframes errorFade {
  0% {
    background: #fdd;
    transform: translateX(0);
  }
  2% {
    transform: translateX(-10px);
  }
  4% {
    transform: translateX(10px);
  }
  6% {
    transform: translateX(-3px);
  }
  8% {
    transform: translateX(3px);
  }
  10% {
    transform: translateX(0);
  }
  100% {
    background: #fff;
    transform: translateX(0);
  }
}
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact-form .form-group.form-group-full {
  margin-bottom: 20px;
}
.contact-form .form-group label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}
.contact-form .form-group .sublabel {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}
.contact-form .form-group .form-control {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fafafa;
  color: #333;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #880098;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(136, 0, 152, 0.2);
}
.contact-form .form-group .form-control::placeholder {
  color: #aaa;
}
.contact-form .form-group select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-group-captcha {
  text-align: center;
}
.contact-form .form-group-captcha .captcha-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-form .form-group-captcha .captcha-container .captcha-img {
  width: auto;
  border-radius: 4px;
  border: 1px solid #f4f4f4;
  display: block;
}
.contact-form .form-group-captcha .captcha-container .captcha-refresh {
  background: #e9b4ff;
  border: 2px solid #880098;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 42px;
  padding-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #880098;
  transition: background 0.2s, color 0.2s;
}
.contact-form .form-group-captcha .captcha-container .captcha-refresh:hover {
  background: #efc5ff;
  color: #000;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry span {
  font-size: 14px;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry span b {
  color: #900;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry .digits-more {
  display: none;
  color: #900;
  font-size: 18px;
  margin: 15px auto 0;
  max-width: 600px;
  font-weight: bold;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry input {
  width: 150px;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry.captcha-entry-stronger {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry.captcha-entry-stronger .digits-less {
  display: none;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry.captcha-entry-stronger .digits-more {
  display: block;
}
.contact-form .form-group-captcha .captcha-container .captcha-entry.captcha-entry-stronger input {
  width: 310px;
}
.contact-form .form-group-captcha .captcha-container .captcha-input {
  max-width: 200px;
  width: auto;
  height: 50px;
  border: 1px solid #880098;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.contact-form .form-group-submit {
  margin-top: 10px;
  margin-bottom: 0;
}
.contact-form .form-group-submit .button-send {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #880098;
  border: none;
  border-radius: 4px;
  padding: 10px 36px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  display: inline-block;
  margin: auto;
}
.contact-form .form-group-submit .button-send:hover {
  background-color: #740081;
}
.contact-form .form-group-submit .button-send:active {
  transform: scale(0.98);
}
.email-success {
  text-align: center;
  padding: 35px 20px 20px;
  background-color: #feedff;
  color: #880098;
  margin: 40px auto;
  max-width: 800px;
  border-top: 5px solid #880098;
  border-bottom: 3px solid #880098;
}
.email-success strong {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.email-failure {
  text-align: center;
  padding: 35px 20px 20px;
  background-color: #f8e5e5;
  color: #990000;
  margin: 40px auto;
  max-width: 800px;
  border-top: 5px solid #990000;
  border-bottom: 3px solid #990000;
}
.email-failure strong {
  font-size: 24px;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.quote-email {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  color: #666;
  background-color: #fff;
  text-align: left;
}
ul.errorlist {
  background-color: rgba(255, 209, 209, 0.5);
  color: #990000;
  border-top: 3px solid #990000;
  border-bottom: 3px solid #990000;
  display: block;
  width: 100%;
  padding: 10px 20px;
  list-style: square outside;
  padding-left: 40px;
}
ul.errorlist li {
  list-style: square outside;
}
ul.errorlist li.errorlist-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #900;
  list-style: none;
}
.splide {
  margin-top: clamp(30px, 5vw, 100px);
}
.splide__track {
  margin: 0 70px;
}
@media (max-width: 600px) {
  .splide__track {
    margin: 0 20px;
    min-height: 120px;
  }
}
.splide__list {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}
.splide__slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splide__slide a {
  display: block;
  padding: 10px;
}
.splide__slide img {
  max-height: 300px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}
button.splide__arrow {
  width: 50px;
  height: 100px;
  border-radius: 30%;
}
@media (max-width: 1500px) {
  button.splide__arrow {
    width: 30px;
    height: 60px;
  }
}
@media (max-width: 900px) {
  button.splide__arrow {
    width: 20px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  button.splide__arrow {
    width: 15px;
    height: 30px;
  }
}
button.splide__arrow--prev {
  background: url(images/arrow-left.svg);
  background-size: contain;
}
@media (max-width: 600px) {
  button.splide__arrow--prev {
    transform: translateX(-20px);
  }
}
button.splide__arrow--next {
  background: url(images/arrow-right.svg);
  background-size: contain;
}
@media (max-width: 600px) {
  button.splide__arrow--next {
    transform: translateX(20px);
  }
}
.pswp__counter {
  display: none;
}
/* Mobile Styles */
@media (max-width: 2560px) {
  section.content-section {
    padding: 120px 0;
  }
  section.content-section .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 2200px) {
  .pricing-boxes {
    flex-wrap: wrap;
  }
  .pricing-boxes .plan-custom {
    border: none;
    flex-basis: 100%;
    padding: 40px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .pricing-boxes .plan-custom .custom-work-boxes br {
    display: none;
  }
  .pricing-boxes .plan-custom h4 {
    white-space: nowrap;
    margin: 0 0 0 30px;
  }
}
@media (max-width: 1920px) {
  section.content-section {
    padding: 120px 0;
  }
  section.content-section .container {
    padding-left: 100px;
    padding-right: 100px;
  }
  section.content-section .section-title {
    font-size: 40px;
  }
  section.content-section h3 {
    font-size: 22px;
  }
  footer .footer-container {
    max-width: 1700px;
  }
}
@media (max-width: 1700px) {
  .pricing-boxes {
    flex-direction: column;
  }
}
@media (max-width: 1500px) {
  section.content-section {
    padding: 80px 0;
  }
  section.content-section .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  section.content-section .section-title {
    font-size: 32px;
  }
  section.content-section h3 {
    font-size: 20px;
    line-height: 1;
  }
  .portfolio-oldest-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  header.home .nav-item {
    min-width: 120px;
  }
  header.home .nav-item .title {
    font-size: 16px;
    padding: 7px 5px 3px;
  }
  header.home .nav-item .subtitle {
    font-size: 13px;
    padding: 3px 5px 7px;
    opacity: 0.8;
    white-space: nowrap;
  }
}
@media (max-width: 1280px) {
  section.content-section {
    padding: 60px 0;
  }
  section.content-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1200px) {
  #hero .hero-content {
    padding: 0 20px;
  }
  .clients-served-count {
    top: -20px;
    font-size: 20px;
  }
  .feature-boxes {
    flex-wrap: wrap;
  }
  .feature-boxes .feature-box {
    flex: 1 1 45%;
  }
  header.home .header-container {
    padding: 0 20px;
  }
  header.home nav ul {
    gap: 5px;
  }
  header.home .nav-item {
    min-width: 120px;
  }
  header.home .nav-item .title {
    font-size: 15px;
  }
  header.home .nav-item .subtitle {
    font-size: 12px;
  }
}
@media (max-width: 970px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .portfolio-item .thumb-link {
    margin-bottom: 10px;
  }
  .portfolio-grid .portfolio-item:nth-child(odd):last-child {
    display: none !important;
  }
  .portfolio-older-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  .portfolio-oldest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }
  .narrower-body {
    padding: 0;
  }
  header.home {
    height: auto;
    padding: 20px 0;
    position: absolute;
  }
  header.home.scrolled {
    height: auto;
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  header.home.scrolled .nav-item {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: transparent;
  }
  header.home .header-container {
    flex-direction: column;
    gap: 20px;
  }
  header.home .logo img {
    width: 400px;
    height: auto;
    object-position: center;
  }
  header.home nav ul {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  header.home .nav-item {
    min-width: 0;
    flex: 1;
    align-items: center;
    text-align: center;
  }
  #sidenav a {
    display: none;
  }
  section.content-section {
    border-left-width: 10px;
  }
  section.content-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer {
    border-left-width: 10px;
  }
  .clients-served-count {
    top: 0px;
    font-size: 18px;
    padding-bottom: 20px;
  }
  .pricing-boxes .plan-custom {
    display: block;
    padding: 20px 20px;
  }
  .pricing-boxes .plan-custom h4 {
    margin-bottom: 20px;
    margin-left: 20px;
  }
}
@media (max-width: 970px) and (min-width: 600.1px) {
  .portfolio-oldest-grid .oldest-item:nth-child(41),
  .portfolio-oldest-grid .oldest-item:nth-child(42) {
    display: none;
  }
}
@media (max-width: 850px) {
  footer .footer-container {
    flex-direction: column;
    gap: 50px;
  }
  footer .footer-main {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-logo {
    width: 100%;
    height: auto;
    max-width: 600px;
    justify-content: center;
    margin: 0 auto;
  }
  footer .footer-logo img {
    width: 100%;
    height: auto;
  }
  .half-sections {
    flex-direction: column;
  }
  .half-section {
    width: auto;
  }
  .pricing-boxes .pricing-box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pricing-boxes .pricing-box .price {
    font-size: 24px;
  }
  .pricing-boxes .pricing-box .price strong {
    font-size: 150%;
  }
  .pricing-boxes .pricing-box .plan-details {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .feature-boxes {
    flex-direction: column;
  }
  header.home nav .mobile-volatile {
    display: none !important;
  }
}
@media (max-width: 700px) and (min-width: 625.1px) {
  header.home .nav-item .title {
    font-size: 14px;
  }
  header.home .nav-item .subtitle {
    font-size: 11px;
  }
}
@media (max-width: 625px) {
  .container {
    padding: 0 20px;
  }
  header.home nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  header.home .logo img {
    width: 300px;
  }
  header.home .nav-item {
    backdrop-filter: blur(3px);
  }
  header.home .nav-item .title {
    padding: 1px 16px;
    font-size: 16px;
  }
  header.home .nav-item .subtitle {
    padding: 1px 16px;
    font-size: 13px;
  }
  .hide-under-600 {
    display: none;
  }
  .show-under-600 {
    display: revert;
  }
  #hero {
    max-height: none;
  }
  #hero .hero-content {
    padding: 300px 10px 180px;
  }
  #hero .hero-content h1 {
    font-size: clamp(30px, 7vw, 96px);
  }
  section.content-section {
    padding: 60px 0;
    border-left-width: 7px;
  }
  section.content-section .section-title {
    font-size: 28px;
  }
  .portfolio-grid {
    gap: 20px;
  }
  .portfolio-item .thumb-link {
    margin-bottom: 5px;
  }
  .portfolio-item .item-info .item-name {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .portfolio-item .item-info .sub-pages {
    gap: 3px;
  }
  .portfolio-item .item-info .sub-pages .sub-link {
    padding: 2px 8px;
    font-size: 10px;
  }
  .portfolio-older-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    max-width: 480px;
    margin: 0 auto;
  }
  .portfolio-older-grid .portfolio-item .item-info .item-name {
    font-size: 14px;
  }
  .portfolio-oldest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .oldest-item .oldest-name {
    font-size: 9px;
    padding: 2px;
  }
  footer {
    border-left-width: 7px;
    padding: 60px 0 40px 0;
  }
  footer .footer-brand {
    text-align: center;
  }
  footer .footer-brand h3 {
    text-align: center;
  }
  footer .footer-brand .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer-brand .footer-contact-info {
    justify-content: center;
  }
  footer .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-links .footer-col,
  footer .footer-links h4 {
    text-align: center;
  }
  footer .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .footer-copyright {
    text-align: center;
  }
  .checkers-1,
  .checkers-2,
  .checkers-3,
  .checkers-4,
  .checkers-5 {
    background-size: 300px;
  }
  .mobile-menu-drop {
    grid-column-end: span 2;
  }
  .mobile-menu-drop .nav-item {
    flex-direction: row;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 5px;
  }
  .mobile-menu-drop .nav-item .title {
    margin: 1px 5px 0;
    padding: 2px 5px;
    border-bottom: none;
  }
  .mobile-menu-drop .nav-item .subtitle {
    margin: 1px 5px 0;
    padding: 2px 5px;
  }
  .contact-form {
    padding: 24px 16px;
  }
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .contact-form .form-row .form-group {
    margin-bottom: 20px;
  }
  .contact-form .form-group-captcha .captcha-container .captcha-input {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .contact-form .form-group-submit .button-send {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 450px) {
  #hero .hero-content h1 {
    line-height: 1.2;
  }
  #rotatingWords:after {
    border-bottom-width: 3px;
    bottom: 0px;
  }
  section.content-section .section-title {
    font-size: 24px;
  }
  section.content-section h3 {
    font-size: 18px;
  }
  .clients-served-count {
    font-size: 16px;
  }
}
/* style-sales.less */
body.sales-page {
  background-color: #ffffff;
  color: #161645;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header.sales-header {
  position: relative;
  height: auto;
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
}
header.sales-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
header.sales-header .logo img {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
header.sales-header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  align-items: center;
}
header.sales-header nav li:nth-child(1) .nav-item {
  border-bottom: 3px solid #00adcf;
}
header.sales-header nav li:nth-child(2) .nav-item {
  border-bottom: 3px solid #880098;
}
header.sales-header .nav-item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  text-decoration: none;
  color: #161645;
  background-color: #f8fafc;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  padding: 0;
  overflow: hidden;
}
header.sales-header .nav-item .title {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 15px 4px;
  width: 100%;
  box-sizing: border-box;
}
header.sales-header .nav-item .subtitle {
  font-size: 12px;
  padding: 4px 15px 8px;
  opacity: 0.7;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}
header.sales-header .nav-item:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.sales-rep-section {
  flex: 1 0 auto;
  padding: 60px 0 6vw;
  background-color: #f5fcff;
}
.sales-rep-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(10px, 1vw, 25px);
  box-sizing: border-box;
}
.sales-rep-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  margin-bottom: 35px;
  position: relative;
}
.sales-rep-avatar {
  margin-bottom: 25px;
}
.sales-rep-avatar img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.sales-rep-badge {
  display: inline-block;
  color: #00adcf;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 5px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.sales-rep-name {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #161645;
  margin: 0 0 12px 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sales-rep-email {
  margin-bottom: 25px;
}
.sales-rep-email a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ff6200;
  text-decoration: none;
  padding: 8px 18px;
  background: rgba(255, 98, 0, 0.08);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.sales-rep-email a:hover {
  background: #ff6200;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 98, 0, 0.25);
}
.sales-rep-email svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.sales-rep-bio {
  font-size: 18px;
  line-height: 1.65;
  color: #4a5568;
  margin: 0 auto;
}
.sales-rep-bio p {
  margin: 0 0 20px 0;
}
.sales-rep-disclaimer {
  font-size: 15px;
  color: #4a5568;
  margin: 20px auto;
  padding: 20px 0 0;
  border-top: 1px solid #ccc;
}
.payment-disclaimer {
  margin: 20px auto;
  background-color: #fff5ee;
  border: 1px solid #ff6200;
  color: #a34a00;
  border-radius: 5px;
  padding: 10px 20px;
}
.sales-rep-actions {
  text-align: center;
  margin: 0 0 20px 0;
}
.btn-homepage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #161645;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(22, 22, 69, 0.2);
}
.btn-homepage:hover {
  background: #2b2b70;
}
@media (max-width: 768px) {
  header.sales-header .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  header.sales-header nav ul {
    width: 100%;
    justify-content: center;
  }
  header.sales-header .nav-item {
    min-width: 120px;
  }
  .sales-rep-card {
    padding: 30px 20px;
  }
  .sales-rep-bio {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */