@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   MODERN CSS RESET
   ========================================================================== */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0b0e14;
  color: #f1f5f9;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
body.no-scroll {
  overflow: hidden;
}

/* A elements that don't have a class get default styles */
a,
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.body-text {
  padding: 2em;
  text-align: center;
}

/* header.scss */
.header {
  position: relative;
  width: 100%;
  height: 110vh;
  min-height: 700px;
  background-color: #0b0e14;
  color: #f1f5f9;
  overflow: hidden;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.header__background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.header__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1), transform 1000ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.05);
}
.header__bg-image.active {
  opacity: 1;
  transform: scale(1);
}
.header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .header__nav {
    padding: 1.5rem 0;
  }
}
.header__nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__nav-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__nav-container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .header__nav-container {
    max-width: 1280px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #8ecae6;
}
.header__logo i {
  font-size: 1.5rem;
}
.header__logo span {
  color: #f1f5f9;
}
.header__menu {
  display: none;
  list-style: none;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header__menu {
    display: flex;
  }
}
.header__menu-link {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 200ms;
}
.header__menu-link:hover, .header__menu-link.active {
  color: #f1f5f9;
}
.header__btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
  border-radius: 9999px;
  padding: 0.5rem 2rem;
}
.header__btn-signin:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header__btn-signin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__btn-signin:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header__btn-signin:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
@media (max-width: 639px) {
  .header__btn-signin {
    display: none;
  }
}
.header__btn-signin:hover {
  background-color: #f1f5f9;
  color: #0b0e14;
}
.header__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  color: #ffffff;
  font-size: 1.25rem;
}
.header__mobile-toggle:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header__mobile-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__mobile-toggle:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header__mobile-toggle:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__hero {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__hero-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .header__hero-content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__hero-content {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .header__hero-content {
    max-width: 1280px;
  }
}
.header__text-block {
  max-width: 650px;
  animation: slideInUp 700ms cubic-bezier(0, 0, 0.2, 1);
}
.header__headline-primary {
  font-size: clamp(1.875rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.header__headline-secondary {
  font-size: clamp(2.25rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fb8500;
  margin-bottom: 1rem;
}
.header__description {
  font-family: "Lora", serif;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 500px;
}
.header__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .header__specs {
    display: flex;
    gap: 3rem;
  }
}
.header__spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__spec-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb9017;
}
.header__spec-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 2px;
}
.header__spec-value {
  font-weight: 600;
  font-size: 1.125rem;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #fb8500;
  color: #ffffff;
  background-color: #fb8500;
  padding: 1rem 2.5rem;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.375rem;
  gap: 1rem;
}
.header__cta:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__cta:hover:not(:disabled) {
  background-color: #58b4d1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.header__cta:focus:not(:disabled) {
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.header__cta:active:not(:disabled) {
  transform: translateY(0);
}
@media (max-width: 639px) {
  .header__cta {
    width: 100%;
  }
}
.header__cta i {
  transition: transform 200ms;
}
.header__cta:hover i {
  transform: translateX(5px);
}
.header__side-nav {
  display: none;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .header__side-nav {
    display: flex;
  }
}
.header__side-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.75rem;
}
.header__side-arrow:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header__side-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__side-arrow:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header__side-arrow:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
.header__side-arrow:hover {
  border-color: #fb8500;
  color: #fb8500;
}
.header__side-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
}
.header__footer {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header__carousel {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #f3f4f6;
}
@media (min-width: 768px) {
  .header__carousel {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__carousel {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .header__carousel {
    max-width: 1280px;
  }
}
.header__carousel::-webkit-scrollbar {
  width: 8px;
}
.header__carousel::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 9999px;
}
.header__carousel::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 9999px;
}
.header__carousel::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
.header__carousel::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .header__carousel {
    justify-content: flex-start;
    overflow: visible;
  }
}
.header__card {
  flex: 0 0 200px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  text-align: left;
  transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 0.6;
}
@media (min-width: 1024px) {
  .header__card {
    flex: 1;
    max-width: 220px;
  }
}
.header__card.active {
  opacity: 1;
  border-color: #fb8500;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.05), 0 1px 2px 0 rgba(115, 191, 220, 0.1);
  transform: translateY(-5px);
}
.header__card-img {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
.header__card-title {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.header__card-link {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fb8500;
  letter-spacing: 0.1em;
}
.header__card:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
.header__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #0b0e14;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-menu.active {
  transform: translateX(0);
}
.header__mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 1001;
}
.header__mobile-close:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header__mobile-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__mobile-close:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header__mobile-close:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
.header__mobile-close:hover {
  color: #fb8500;
}
.header__mobile-nav {
  width: 100%;
  text-align: center;
}
.header__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.header__mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9ca3af;
  text-decoration: none;
  transition: color 300ms;
}
.header__mobile-link:hover, .header__mobile-link.active {
  color: #ffffff;
}
.header__mobile-footer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.header__mobile-socials {
  display: flex;
  gap: 1.5rem;
}
.header__mobile-socials a {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: color 200ms;
}
.header__mobile-socials a:hover {
  color: #fb8500;
}
.header__mobile-copyright {
  font-size: 0.75rem;
  color: #4b5563;
}

/* _header_minimal.scss */
.header-minimal {
  position: relative;
  width: 100%;
  padding-bottom: 1rem;
  background-color: #0b0e14;
  color: #f1f5f9;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-minimal__nav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .header-minimal__nav {
    padding: 1.5rem 0;
  }
}
.header-minimal__nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header-minimal__nav-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-minimal__nav-container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .header-minimal__nav-container {
    max-width: 1280px;
  }
}
.header-minimal__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #8ecae6;
}
.header-minimal__logo i {
  font-size: 1.5rem;
}
.header-minimal__logo span {
  color: #f1f5f9;
}
.header-minimal__menu {
  display: none;
  list-style: none;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .header-minimal__menu {
    display: flex;
  }
}
.header-minimal__menu-link {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 200ms;
}
.header-minimal__menu-link:hover, .header-minimal__menu-link.active {
  color: #f1f5f9;
}
.header-minimal__btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
  border-radius: 9999px;
  padding: 0.5rem 2rem;
}
.header-minimal__btn-signin:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header-minimal__btn-signin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header-minimal__btn-signin:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header-minimal__btn-signin:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
@media (max-width: 639px) {
  .header-minimal__btn-signin {
    display: none;
  }
}
.header-minimal__btn-signin:hover {
  background-color: #f1f5f9;
  color: #0b0e14;
}
.header-minimal__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  color: #ffffff;
  font-size: 1.25rem;
}
.header-minimal__mobile-toggle:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header-minimal__mobile-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header-minimal__mobile-toggle:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header-minimal__mobile-toggle:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
@media (min-width: 1024px) {
  .header-minimal__mobile-toggle {
    display: none;
  }
}
.header-minimal__mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #0b0e14;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-minimal__mobile-menu.active {
  transform: translateX(0);
}
.header-minimal__mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: transparent;
  color: #f1f5f9;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 1001;
}
.header-minimal__mobile-close:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.header-minimal__mobile-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header-minimal__mobile-close:hover:not(:disabled) {
  background-color: #f3f4f6;
}
.header-minimal__mobile-close:focus:not(:disabled) {
  background-color: #f3f4f6;
  box-shadow: 0 0 0 2px rgba(115, 191, 220, 0.2);
}
.header-minimal__mobile-close:hover {
  color: #fb8500;
}
.header-minimal__mobile-nav {
  width: 100%;
  text-align: center;
}
.header-minimal__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}
.header-minimal__mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9ca3af;
  text-decoration: none;
  transition: color 300ms;
}
.header-minimal__mobile-link:hover, .header-minimal__mobile-link.active {
  color: #ffffff;
}
.header-minimal__mobile-footer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.header-minimal__mobile-socials {
  display: flex;
  gap: 1.5rem;
}
.header-minimal__mobile-socials a {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: color 200ms;
}
.header-minimal__mobile-socials a:hover {
  color: #fb8500;
}
.header-minimal__mobile-copyright {
  font-size: 0.75rem;
  color: #4b5563;
}

.about-us-section {
  position: relative;
  padding-top: 3rem;
  background-color: #0b0e14;
  overflow: hidden;
}
.about-us-section__grid {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .about-us-section__grid {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-us-section__grid {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .about-us-section__grid {
    max-width: 1280px;
  }
}
@media (min-width: 1024px) {
  .about-us-section__grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 6rem;
  }
}
.about-us-section__content {
  animation: slideInUp 500ms cubic-bezier(0, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-us-section__content {
    padding-right: 2rem;
  }
}
.about-us-section__label {
  display: block;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fb8500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.about-us-section__title {
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.25;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .about-us-section__title {
    font-size: 3rem;
  }
}
.about-us-section__body {
  margin-bottom: 2rem;
}
.about-us-section__body p {
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.about-us-section__body p:last-child {
  margin-bottom: 0;
}
.about-us-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fb8500;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: -moz-fit-content;
  width: fit-content;
}
.about-us-section__cta i {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-us-section__cta:hover {
  color: #219ebc;
}
.about-us-section__cta:hover i {
  transform: translateX(5px);
}
.about-us-section__media {
  position: relative;
  animation: slideInUp 700ms cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}
.about-us-section__image-frame {
  background-color: #161b22;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
  transition: transform 500ms cubic-bezier(0, 0, 0.2, 1), box-shadow 500ms cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .about-us-section__image-frame {
    padding: 1.5rem;
  }
}
.about-us-section__image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}
.about-us-section__image-container {
  background-color: #023047;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/4.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-us-section__image-container {
    aspect-ratio: 1/1.1;
  }
}
.about-us-section__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.8;
}
.about-us-section__footer {
  width: 100%;
  background-color: #fb8500;
  padding: 2.5rem 0;
  margin-top: auto;
}
.about-us-section__quote-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about-us-section__quote-container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-us-section__quote-container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .about-us-section__quote-container {
    max-width: 1280px;
  }
}
.about-us-section__quote-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.875rem;
}
.about-us-section__quote-text {
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  max-width: 800px;
  line-height: 1.375;
}
@media (min-width: 768px) {
  .about-us-section__quote-text {
    font-size: 1.5rem;
  }
}

.services-section {
  background-color: #0b0e14;
  padding: 4rem 0;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #f1f5f9;
  overflow: hidden;
}
.services-section__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .services-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services-section__container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .services-section__container {
    max-width: 1280px;
  }
}
.services-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.services-section__header .services-section__label {
  display: inline-block;
  color: #fb8500;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(251, 133, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.services-section__header .services-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.services-section__header .services-section__title--accent {
  color: #fb8500;
}
@media (min-width: 768px) {
  .services-section__header .services-section__title {
    font-size: 3rem;
  }
}
.services-section__header .services-section__description {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.625;
}
.services-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-section__card {
  position: relative;
  background-color: #161b22;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}
.services-section__card:hover {
  border-color: rgba(251, 133, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.services-section__card:hover .services-section__card-watermark {
  opacity: 0.1;
  transform: scale(1.1);
}
.services-section__card:hover .services-section__card-link i {
  transform: translateX(5px);
}
.services-section__card-icon-container {
  width: 48px;
  height: 48px;
  background-color: rgba(251, 133, 0, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb8500;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.services-section__card-watermark {
  position: absolute;
  top: 10%;
  right: -10%;
  font-size: 8rem;
  color: #ffffff;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
  transition: all 500ms cubic-bezier(0, 0, 0.2, 1);
}
.services-section__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}
.services-section__card-text {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.services-section__card-link {
  color: #fb8500;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section__card-link i {
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.services-section__card-link:hover {
  color: #fd9e02;
}
.services-section__cta {
  text-align: center;
  margin-top: 1rem;
}
.services-section__cta-text {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.services-section__cta .services-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #fb8500;
  color: #000000;
  border-radius: 9999px;
  font-weight: 700;
  padding: 1rem 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}
.services-section__cta .services-section__button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.services-section__cta .services-section__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 768px) {
  .services-section__cta .services-section__button {
    width: auto;
  }
}
.services-section__cta .services-section__button:hover {
  background-color: #fd9e02;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 4px 8px 0 rgba(115, 191, 220, 0.3);
  transform: scale(1.02);
}
.services-section__cta .services-section__button:active {
  transform: scale(0.98);
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #010409;
}
.cta-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://sythsystems.sirv.com/client_assets/lautransport/fleet/017A3346.JPG?webp.fallback=jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.4);
  z-index: 1;
  transform: scale(1.1);
}
.cta-section__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.75);
}
.cta-section__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  max-width: 768px;
}
@media (min-width: 768px) {
  .cta-section__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .cta-section__container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .cta-section__container {
    max-width: 1280px;
  }
}
.cta-section__badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(251, 133, 0, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fb8500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.cta-section__headline {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
}
.cta-section__headline--accent {
  color: #fb8500;
}
@media (min-width: 768px) {
  .cta-section__headline {
    font-size: 3rem;
  }
}
.cta-section__body {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cta-section__body {
    font-size: 1rem;
  }
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cta-section__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: none;
  width: 100%;
}
.cta-section__btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.cta-section__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 768px) {
  .cta-section__btn {
    width: auto;
  }
}
.cta-section__btn--primary, .cta-section__btn--whatsapp {
  background-color: #fb8500;
  color: #000;
  border: none;
}
.cta-section__btn--primary i, .cta-section__btn--whatsapp i {
  font-size: 1.125rem;
}
.cta-section__btn--primary:hover, .cta-section__btn--whatsapp:hover {
  background-color: #ffffff;
  color: #fb8500;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}
.cta-section__footer {
  margin-top: 2rem;
}
.cta-section__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  width: 100%;
}
.cta-section__vps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cta-section__vps {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}
.cta-section__vp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.cta-section__vp i {
  color: #fb8500;
  font-size: 0.875rem;
}

.cta-section__btn--primary {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-section__btn--primary:active {
  transform: scale(0.98);
}

.fleet-view {
  position: relative;
  width: 100%;
  height: 140vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #0b0e14;
  color: #f1f5f9;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.fleet-view__bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fleet-view__bg-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}
.fleet-view__bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1), transform 1000ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(1.1);
}
.fleet-view__bg-layer--active {
  opacity: 1;
  transform: scale(1);
}
.fleet-view__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1030;
}
@media (min-width: 1024px) {
  .fleet-view__header {
    padding: 2rem 3rem;
  }
}
.fleet-view__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}
.fleet-view__logo-icon {
  color: #fb8500;
}
.fleet-view__nav {
  display: none;
}
@media (min-width: 1024px) {
  .fleet-view__nav {
    display: block;
  }
}
.fleet-view__nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.fleet-view__nav-link {
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 200ms;
}
.fleet-view__nav-link:hover {
  opacity: 1;
}
.fleet-view__user-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fleet-view__profile {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .fleet-view__profile {
    display: flex;
  }
}
.fleet-view__avatar {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #161b22;
  border: 2px solid #374151;
}
.fleet-view__icon-btn, .fleet-view__menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.125rem;
  cursor: pointer;
  transition: transform 200ms;
}
.fleet-view__icon-btn:hover, .fleet-view__menu-toggle:hover {
  transform: scale(1.1);
}
@media (min-width: 1024px) {
  .fleet-view__menu-toggle {
    display: none;
  }
}
.fleet-view__sidebar {
  display: none;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .fleet-view__sidebar {
    display: flex;
  }
}
.fleet-view__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.fleet-view__line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}
.fleet-view__step-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.875rem;
}
.fleet-view__vertical-page {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.fleet-view__main {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 1.5rem 5rem;
}
@media (min-width: 1024px) {
  .fleet-view__main {
    flex-direction: row;
    padding: 0 8rem;
    align-items: center;
  }
}
.fleet-view__hero-zone {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .fleet-view__hero-zone {
    text-align: left;
  }
}
.fleet-view__content-wrapper {
  max-width: 500px;
  margin: 0 auto;
  animation: slideInUp 300ms cubic-bezier(0, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .fleet-view__content-wrapper {
    margin: 0;
  }
}
.fleet-view__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .fleet-view__title {
    font-size: 3.75rem;
  }
}
.fleet-view__description {
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .fleet-view__description {
    font-size: 1rem;
  }
}
.fleet-view__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #fb8500;
  color: #ffffff;
  background: #219ebc;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  width: 100%;
  justify-content: space-between;
  font-size: 1rem;
}
.fleet-view__cta:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.fleet-view__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.fleet-view__cta:hover:not(:disabled) {
  background-color: #58b4d1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.fleet-view__cta:focus:not(:disabled) {
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.fleet-view__cta:active:not(:disabled) {
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .fleet-view__cta {
    width: auto;
    justify-content: center;
    gap: 1rem;
  }
}
.fleet-view__cta:hover {
  background: #219ebc;
}
.fleet-view__card-system {
  flex: 1;
  position: relative;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .fleet-view__card-system {
    margin-top: 0;
    height: 450px;
  }
}
.fleet-view__carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #f3f4f6;
}
.fleet-view__carousel::-webkit-scrollbar {
  width: 8px;
}
.fleet-view__carousel::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 9999px;
}
.fleet-view__carousel::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 9999px;
}
.fleet-view__carousel::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
@media (min-width: 1024px) {
  .fleet-view__carousel {
    overflow: visible;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    padding: 0;
  }
}
.fleet-view__card {
  min-width: 200px;
  height: 300px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: center;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .fleet-view__card {
    position: absolute;
    min-width: 240px;
    height: 360px;
    top: 0;
    right: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  }
  .fleet-view__card.position-0 {
    z-index: 10;
    transform: translateX(-140%) scale(1.1);
    opacity: 1;
  }
  .fleet-view__card.position-1 {
    z-index: 9;
    transform: translateX(-70%) scale(1);
    opacity: 0.9;
  }
  .fleet-view__card.position-2 {
    z-index: 8;
    transform: translateX(0) scale(0.9);
    opacity: 0.8;
  }
  .fleet-view__card.position-3, .fleet-view__card.position-4, .fleet-view__card.position-5, .fleet-view__card.position-6 {
    opacity: 0;
    transform: translateX(50%);
    z-index: 7;
  }
}
.fleet-view__card:hover .fleet-view__card-img {
  transform: scale(1.1);
}
.fleet-view__card:hover .fleet-view__bookmark {
  background: #ffffff;
  color: #58b4d1;
}
.fleet-view__card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 500ms;
}
.fleet-view__bookmark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms;
}
.fleet-view__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.fleet-view__card-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.fleet-view__rating {
  color: #ffb703;
  font-size: 10px;
}
.fleet-view__controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .fleet-view__controls {
    bottom: 3rem;
    padding: 0 8rem;
    justify-content: center;
    gap: 2rem;
  }
}
.fleet-view__pagination {
  display: flex;
  gap: 0.5rem;
}
.fleet-view__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 300ms;
}
.fleet-view__dot--active {
  width: 24px;
  background: #8ecae6;
}
.fleet-view__arrows {
  display: flex;
  gap: 1rem;
}
.fleet-view__arrow {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms;
}
.fleet-view__arrow:hover {
  background: #ffffff;
  color: #111827;
}

.footer {
  background-color: #023047;
  color: #ffffff;
  padding: 4rem 0 2rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}
.footer__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .footer__container {
    max-width: 1280px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fb8500;
  border-radius: 9999px;
  color: #023047;
  font-size: 1.125rem;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.footer__brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.footer__brand-accent {
  color: #fb8500;
}
.footer__mission {
  font-size: 1rem;
  line-height: 1.625;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 400px;
}
.footer__subscribe-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fb8500;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.footer__subscribe-form {
  width: 100%;
  max-width: 350px;
}
.footer__input-group {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 0.25rem;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__input-group:focus-within {
  border-color: #fb8500;
}
.footer__input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  outline: none;
}
.footer__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer__subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fb8500;
  color: #023047;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__subscribe-btn:hover {
  background-color: #fd9e02;
  transform: scale(1.05);
}
.footer__subscribe-btn i {
  font-size: 0.75rem;
  transform: rotate(45deg);
}
.footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.footer__nav-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fb8500;
  border-radius: 9999px;
  margin-right: 0.75rem;
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-item:hover::before {
  box-shadow: 0 0 8px #fb8500;
}
.footer__nav-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__nav-link:hover {
  color: #ffffff;
}
.footer__social-links {
  display: flex;
  gap: 0.75rem;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-icon:hover {
  background-color: #fb8500;
  border-color: #fb8500;
  color: #023047;
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.footer__bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .footer__legal {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: #64748b;
}
.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.footer__legal-links li {
  position: relative;
}
.footer__legal-links li:not(:last-child)::after {
  content: "@";
  color: #64748b;
  position: absolute;
  right: -10px;
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__legal-link {
  font-size: 0.75rem;
  color: #64748b;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__legal-link:hover {
  color: #fb8500;
}
.footer__credit {
  font-size: 0.75rem;
  color: #64748b;
}
.footer__credit-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__credit-link:hover {
  color: #fb8500;
}

/* For best practice, move CSS below to an external CSS file. */
@keyframes fadeinall {
  0% {
    opacity: 1;
  }
  97% {
    opacity: 0;
  }
  98% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    z-index: -1;
  }
}
#fadein {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  background-color: #0b0e14;
  z-index: 999;
  animation-fill-mode: forwards;
  animation: fadeinall 1s normal both;
  animation-delay: 0.3s;
}

.hire-now {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.hire-now__container {
  background-color: #0b0e14;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #0b0e14;
}
@media (min-width: 768px) {
  .hire-now__container {
    flex-direction: row;
  }
}
.hire-now__sidebar {
  background-color: #023047;
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}
@media (min-width: 768px) {
  .hire-now__sidebar {
    width: 35%;
    padding: 2.5rem;
  }
}
.hire-now__sidebar-title {
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hire-now__sidebar-description {
  font-family: "Lora", serif;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.hire-now__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hire-now__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hire-now__contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.hire-now__contact-info {
  display: flex;
  flex-direction: column;
}
.hire-now__contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.25rem;
}
.hire-now__contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 200ms;
}
.hire-now__contact-link:hover {
  color: #fb8500;
}
.hire-now__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hire-now__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms;
}
.hire-now__social-link:hover {
  background-color: #ffffff;
  color: #0b0e14;
  transform: translateY(-2px);
}
.hire-now__form-wrapper {
  padding: 1.5rem;
  flex: 1;
  background-color: #161b22;
}
@media (min-width: 768px) {
  .hire-now__form-wrapper {
    padding: 2.5rem;
  }
}
.hire-now__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hire-now__form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.hire-now__field {
  display: flex;
  flex-direction: column;
}
.hire-now__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.hire-now__input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #f1f5f9;
  background-color: #0b0e14;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #374151;
  background-color: #0b0e14;
  height: 48px;
}
.hire-now__input::-moz-placeholder {
  color: #9ca3af;
}
.hire-now__input::placeholder {
  color: #9ca3af;
}
.hire-now__input:focus {
  outline: none;
  border-color: #fb8500;
  box-shadow: 0 0 0 3px rgba(115, 191, 220, 0.1);
}
.hire-now__input:disabled {
  background-color: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}
.hire-now__input.error {
  border-color: #ef4444;
}
.hire-now__input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.hire-now__input.warning {
  border-color: #f59e0b;
}
.hire-now__input.warning:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.hire-now__input.success {
  border-color: #22c55e;
}
.hire-now__input.success:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.hire-now__input:focus {
  border-color: #fb8500;
  box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.1);
}
.hire-now__select-wrapper {
  position: relative;
}
.hire-now__select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.75rem;
  color: #9ca3af;
}
.hire-now__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.hire-now__toggle {
  display: flex;
  background-color: #0b0e14;
  padding: 4px;
  border-radius: 0.5rem;
  position: relative;
  height: 48px;
}
.hire-now__toggle input {
  display: none;
}
.hire-now__toggle input:checked + label {
  color: #fb8500;
}
.hire-now__toggle input#delivery:checked ~ .hire-now__toggle-glider {
  transform: translateX(0);
}
.hire-now__toggle input#pickup:checked ~ .hire-now__toggle-glider {
  transform: translateX(100%);
}
.hire-now__toggle label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  transition: color 300ms;
}
.hire-now__toggle-glider {
  position: absolute;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: #161b22;
  border-radius: 0.375rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.hire-now__date-wrapper {
  position: relative;
}
.hire-now__date-wrapper input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
.hire-now__summary {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #374151;
  border-radius: 0.75rem;
  background-color: #0b0e14;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hire-now__summary {
    flex-direction: row;
    text-align: left;
  }
}
.hire-now__summary-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
}
.hire-now__summary-subtext {
  font-family: "Lora", serif;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}
.hire-now__summary-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #f1f5f9;
}
.hire-now__currency {
  font-size: 1.25rem;
  font-weight: 700;
}
.hire-now__amount {
  font-size: 2.25rem;
  font-weight: 700;
}
.hire-now__total-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-left: 0.5rem;
}
.hire-now__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hire-now__actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.hire-now__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  height: 52px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
}
.hire-now__btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.hire-now__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.hire-now__btn--reset {
  background-color: #f3f4f6;
  color: #374151;
}
.hire-now__btn--reset:hover {
  background-color: #e5e7eb;
}
.hire-now__btn--book {
  background-color: #fb8500;
  color: #ffffff;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .hire-now__btn--book {
    flex-grow: 0;
    min-width: 240px;
  }
}
.hire-now__btn--book:hover {
  background-color: #fd9e02;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}
.hire-now__field--full {
  grid-column: 1/-1;
}
.hire-now__alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hire-now__alert--success {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}
.hire-now__alert--error {
  background-color: #fef2f2;
  color: #b91c1c;
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #010409;
  padding: 3rem 1rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.faq-section__container {
  background-color: #0b0e14;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #161b22;
  width: 100%;
  max-width: 768px;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .faq-section__container {
    padding: 3rem 4rem;
  }
}
.faq-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .faq-section__header {
    margin-bottom: 0.5rem;
  }
}
.faq-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .faq-section__title {
    font-size: 2.25rem;
  }
}
.faq-section__description {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .faq-section__description {
    font-size: 1rem;
  }
}
.faq-section__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-section__item {
  border: 1px solid #1f2937;
  border-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.faq-section__item.is-open {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}
.faq-section__item.is-open .faq-section__question {
  color: #3b82f6;
}
.faq-section__item.is-open .faq-section__icon {
  color: #3b82f6;
}
.faq-section__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-section__trigger:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}
@media (min-width: 1024px) {
  .faq-section__trigger {
    padding: 1.25rem 1.5rem;
  }
}
.faq-section__question {
  font-weight: 600;
  font-size: 1rem;
  color: #f1f5f9;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section__icon {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 20px;
  text-align: right;
}
.faq-section__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.is-open .faq-section__content {
  max-height: 500px;
}
.faq-section__body {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .faq-section__body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1rem;
  }
}
.faq-section__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.faq-section__footer-text {
  font-size: 0.875rem;
  color: #94a3b8;
}
.faq-section__btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #fb8500;
  color: #ffffff;
  background-color: #2563eb;
  border-radius: 9999px;
  width: 100%;
  padding: 0.75rem 2rem;
  font-weight: 600;
}
.faq-section__btn-support:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.faq-section__btn-support:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.faq-section__btn-support:hover:not(:disabled) {
  background-color: #58b4d1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.faq-section__btn-support:focus:not(:disabled) {
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.faq-section__btn-support:active:not(:disabled) {
  transform: translateY(0);
}
@media (min-width: 640px) {
  .faq-section__btn-support {
    width: auto;
    min-width: 200px;
  }
}
.faq-section__btn-support:hover {
  background-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}

.contact-form {
  padding: 1rem;
  background-color: #0b0e14;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}
.contact-form__container {
  background-color: #0b0e14;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1024px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-form__container {
    flex-direction: row;
    min-height: 750px;
  }
}
.contact-form__sidebar {
  background-color: #023047;
  color: #ffffff;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .contact-form__sidebar {
    width: 35%;
    padding: 3rem 2rem;
  }
}
.contact-form__info-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-form__info-item i {
  font-size: 1.125rem;
  color: #ffffff;
  width: 20px;
  margin-top: 4px;
}
.contact-form__info-item strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.contact-form__info-item span {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.625;
}
.contact-form__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-form__socials {
    margin-top: auto;
  }
}
.contact-form__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form__social-link:hover {
  background-color: #fb8500;
  transform: translateY(-2px);
}
.contact-form__content {
  background-color: #161b22;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
  .contact-form__content {
    width: 65%;
    padding: 3rem 2.5rem;
  }
}
.contact-form__header {
  margin-bottom: 2rem;
}
.contact-form__title {
  font-family: "Lora", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}
.contact-form__title--light {
  color: #ffffff;
}
.contact-form__description {
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  line-height: 1.625;
}
.contact-form__description--light {
  color: #d1d5db;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form__row {
    flex-direction: row;
  }
  .contact-form__row > * {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .contact-form__row--full {
    flex-direction: column;
  }
}
.contact-form__group {
  display: flex;
  flex-direction: column;
}
.contact-form__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.5;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin-bottom: 0.5rem;
}
.contact-form__label span {
  color: #9ca3af;
  font-weight: 400;
}
.contact-form__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-form__input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}
.contact-form__input-wrapper input,
.contact-form__input-wrapper select,
.contact-form__input-wrapper textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #f1f5f9;
  background-color: #0b0e14;
  border: 1px solid #374151;
  border-radius: 0.375rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 2.5rem;
  border-color: #374151;
  background-color: #0b0e14;
  height: auto;
  min-height: 50px;
  color: #f1f5f9;
}
.contact-form__input-wrapper input::-moz-placeholder, .contact-form__input-wrapper select::-moz-placeholder, .contact-form__input-wrapper textarea::-moz-placeholder {
  color: #9ca3af;
}
.contact-form__input-wrapper input::placeholder,
.contact-form__input-wrapper select::placeholder,
.contact-form__input-wrapper textarea::placeholder {
  color: #9ca3af;
}
.contact-form__input-wrapper input:focus,
.contact-form__input-wrapper select:focus,
.contact-form__input-wrapper textarea:focus {
  outline: none;
  border-color: #fb8500;
  box-shadow: 0 0 0 3px rgba(115, 191, 220, 0.1);
}
.contact-form__input-wrapper input:disabled,
.contact-form__input-wrapper select:disabled,
.contact-form__input-wrapper textarea:disabled {
  background-color: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}
.contact-form__input-wrapper input.error,
.contact-form__input-wrapper select.error,
.contact-form__input-wrapper textarea.error {
  border-color: #ef4444;
}
.contact-form__input-wrapper input.error:focus,
.contact-form__input-wrapper select.error:focus,
.contact-form__input-wrapper textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.contact-form__input-wrapper input.warning,
.contact-form__input-wrapper select.warning,
.contact-form__input-wrapper textarea.warning {
  border-color: #f59e0b;
}
.contact-form__input-wrapper input.warning:focus,
.contact-form__input-wrapper select.warning:focus,
.contact-form__input-wrapper textarea.warning:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.contact-form__input-wrapper input.success,
.contact-form__input-wrapper select.success,
.contact-form__input-wrapper textarea.success {
  border-color: #22c55e;
}
.contact-form__input-wrapper input.success:focus,
.contact-form__input-wrapper select.success:focus,
.contact-form__input-wrapper textarea.success:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
.contact-form__input-wrapper input:focus,
.contact-form__input-wrapper select:focus,
.contact-form__input-wrapper textarea:focus {
  border-color: #fb8500;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.05), 0 1px 2px 0 rgba(115, 191, 220, 0.1);
}
.contact-form__input-wrapper input:focus + i,
.contact-form__input-wrapper select:focus + i,
.contact-form__input-wrapper textarea:focus + i {
  color: #fb8500;
}
.contact-form__input-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.contact-form__input-wrapper--textarea {
  align-items: flex-start;
}
.contact-form__input-wrapper--textarea i {
  top: 1rem;
}
.contact-form__input-wrapper--textarea textarea {
  padding-top: 0.75rem;
  resize: vertical;
}
.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .contact-form__actions {
    flex-direction: row;
  }
}
.contact-form__btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__btn {
    width: auto;
    min-width: 160px;
  }
}
.contact-form__btn i {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}
.contact-form__btn--primary {
  background-color: #fb8500;
  color: #ffffff;
  border: none;
}
.contact-form__btn--primary:hover {
  background-color: #fd9e02;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.contact-form__btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #0b0e14;
  color: #f1f5f9;
  border-color: #d1d5db;
  background-color: #0b0e14;
  border: 1px solid #374151;
  color: #94a3b8;
}
.contact-form__btn--secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.contact-form__btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-form__btn--secondary:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}
.contact-form__btn--secondary:focus:not(:disabled) {
  border-color: #73bfdc;
  box-shadow: 0 0 0 3px rgba(115, 191, 220, 0.1);
}
.contact-form__btn--secondary:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.contact-form__alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-form__alert--success {
  background-color: #f0fdf4;
  color: #15803d;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}
.contact-form__alert--error {
  background-color: #fef2f2;
  color: #b91c1c;
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444;
}

.privacy-policy {
  background-color: #0b0e14;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #f1f5f9;
  line-height: 1.625;
  padding-bottom: 5rem;
}
.privacy-policy__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .privacy-policy__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .privacy-policy__container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .privacy-policy__container {
    max-width: 1280px;
  }
}
.privacy-policy__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1f2937;
}
@media (max-width: 639px) {
  .privacy-policy__header {
    text-align: left;
  }
}
.privacy-policy__breadcrumb {
  margin-bottom: 1rem;
}
.privacy-policy__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}
.privacy-policy__breadcrumb ol li::after {
  content: "/";
  margin: 0 0.5rem;
}
.privacy-policy__breadcrumb ol li:last-child::after {
  content: "";
}
.privacy-policy__breadcrumb ol li a {
  color: #64748b;
  text-decoration: none;
}
.privacy-policy__breadcrumb ol li a:hover {
  color: #fb8500;
}
.privacy-policy__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}
@media (max-width: 639px) {
  .privacy-policy__title {
    font-size: 1.875rem;
  }
}
.privacy-policy__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #64748b;
}
@media (min-width: 768px) {
  .privacy-policy__meta {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.privacy-policy__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.privacy-policy__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .privacy-policy__layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .privacy-policy__sidebar {
    position: sticky;
    top: 2rem;
  }
}
.privacy-policy__nav-wrapper {
  background-color: #161b22;
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
}
@media (min-width: 1024px) {
  .privacy-policy__nav-wrapper {
    background-color: transparent;
    padding: 0;
  }
}
.privacy-policy__nav-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #475569;
  margin-bottom: 1rem;
}
.privacy-policy__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.privacy-policy__nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.privacy-policy__nav-link i {
  width: 16px;
  font-size: 14px;
  color: #f1f5f9;
  transition: color 200ms;
}
.privacy-policy__nav-link:hover {
  background-color: #161b22;
  color: #fb8500;
}
.privacy-policy__nav-link.active {
  border-left-color: #fb8500;
  background-color: #0b0e14;
  color: #fb8500;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.privacy-policy__nav-link.active i {
  color: #fb8500;
}
.privacy-policy__body p {
  margin-bottom: 1rem;
  color: #94a3b8;
}
.privacy-policy__section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}
.privacy-policy__section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fb8500;
  margin-bottom: 1.5rem;
}
.privacy-policy__section-title i {
  font-size: 0.8em;
  opacity: 0.8;
}
.privacy-policy__list {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}
.privacy-policy__list li {
  margin-bottom: 0.75rem;
  color: #94a3b8;
  position: relative;
}
.privacy-policy__list:not(.privacy-policy__list--numbered) {
  list-style: none;
}
.privacy-policy__list:not(.privacy-policy__list--numbered) li::before {
  content: ">";
  color: #fb8500;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}
.privacy-policy__list--numbered {
  list-style: none;
  counter-reset: privacy-counter;
}
.privacy-policy__list--numbered li {
  counter-increment: privacy-counter;
  padding-left: 0.5rem;
}
.privacy-policy__list--numbered li::before {
  content: counter(privacy-counter);
  color: #fb8500;
  font-weight: 700;
  position: absolute;
  left: -1.5rem;
  font-size: 0.75rem;
  top: 2px;
}
.privacy-policy__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .privacy-policy__grid {
    flex-direction: row;
  }
}
.privacy-policy__card {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid #1f2937;
  border-radius: 0.5rem;
  transition: transform 300ms;
}
.privacy-policy__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.privacy-policy__card-icon {
  font-size: 1.25rem;
  color: #fb8500;
  margin-bottom: 1rem;
  display: block;
}
.privacy-policy__card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.privacy-policy__card-text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.privacy-policy__callout {
  background: linear-gradient(135deg, #73bfdc 0%, #58b4d1 100%);
  border-radius: 0.75rem;
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.privacy-policy__callout blockquote {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.625;
}
.privacy-policy__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .privacy-policy__actions {
    flex-direction: row;
  }
}
.privacy-policy__btn {
  width: 100%;
}
@media (min-width: 768px) {
  .privacy-policy__btn {
    width: auto;
  }
}
.privacy-policy__btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #fb8500;
  color: #ffffff;
  background-color: #fb8500;
  padding: 0.75rem 1.5rem;
}
.privacy-policy__btn--primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.privacy-policy__btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.privacy-policy__btn--primary:hover:not(:disabled) {
  background-color: #58b4d1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.privacy-policy__btn--primary:focus:not(:disabled) {
  box-shadow: 0 0 0 1px rgba(115, 191, 220, 0.1), 0 2px 4px 0 rgba(115, 191, 220, 0.2);
}
.privacy-policy__btn--primary:active:not(:disabled) {
  transform: translateY(0);
}
.privacy-policy__btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Poppins", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-color: #0b0e14;
  color: #f1f5f9;
  border-color: #d1d5db;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border-color: #d1d5db;
  color: #f1f5f9;
}
.privacy-policy__btn--ghost:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.privacy-policy__btn--ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.privacy-policy__btn--ghost:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}
.privacy-policy__btn--ghost:focus:not(:disabled) {
  border-color: #73bfdc;
  box-shadow: 0 0 0 3px rgba(115, 191, 220, 0.1);
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

[data-aos=fade-up] {
  transform: translateY(40px);
}

[data-aos=fade-down] {
  transform: translateY(-40px);
}

[data-aos=fade-right] {
  transform: translateX(-40px);
}

[data-aos=fade-left] {
  transform: translateX(40px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=main.css.map */