@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.menu-open {
    overflow: auto;
  }
}
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 80;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 1rem;
  line-height: 1.625;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #FF5722;
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover {
  color: #E64A19;
}
a:focus-visible {
  outline: 2px solid #FF5722;
  outline-offset: 2px;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

@font-face {
  font-family: "Manrope Fallback";
  src: local("Arial");
  size-adjust: 106%;
  ascent-override: 93%;
  descent-override: 26%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Sora Fallback";
  src: local("Arial");
  size-adjust: 103%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

*:focus-visible {
  outline: 2px solid #FF5722;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 2rem;
  }
}
.grid--2-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--4-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid--4-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--auto-fit {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.flex {
  display: flex;
}
.flex--center {
  align-items: center;
  justify-content: center;
}
.flex--between {
  align-items: center;
  justify-content: space-between;
}
.flex--start {
  align-items: flex-start;
  justify-content: flex-start;
}
.flex--end {
  align-items: flex-end;
  justify-content: flex-end;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--column {
  flex-direction: column;
}
.flex--gap-2 {
  gap: 0.5rem;
}
.flex--gap-4 {
  gap: 1rem;
}
.flex--gap-6 {
  gap: 1.5rem;
}
.flex--gap-8 {
  gap: 2rem;
}

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}
.section--hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .section--hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  .section--hero {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.section--gray {
  background-color: #F9FAFB;
}
.section--cream {
  background-color: #FFF5F0;
}
.section--dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #FFFFFF;
}
.section--gradient {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #FFFFFF;
}
.section--gradient h1, .section--gradient h2, .section--gradient h3, .section--gradient h4, .section--gradient h5, .section--gradient h6 {
  color: #FFFFFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  min-height: 72px;
}
@media (min-width: 768px) {
  .header {
    min-height: 88px;
  }
}
.header__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .header__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 768px) {
  .header__container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  transition: opacity 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo-img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo-img {
    height: 44px;
  }
}
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.header--scrolled .header__container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .header--scrolled .header__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.header--scrolled .header__logo-img {
  height: 32px;
}
@media (min-width: 768px) {
  .header--scrolled .header__logo-img {
    height: 38px;
  }
}

.header-spacer {
  height: 72px;
}
@media (min-width: 768px) {
  .header-spacer {
    height: 88px;
  }
}

.page-home .header-spacer {
  display: none;
}

.footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem 0;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 87, 34, 0.3) 50%, transparent 100%);
}
.footer__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.footer h3.footer__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .footer h3.footer__title {
    font-size: 1.5rem;
  }
}
.footer__text {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #9CA3AF;
  line-height: 1.625;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer__text:last-child {
  margin-bottom: 0;
}
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__link {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #9CA3AF;
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  transition: color 250ms cubic-bezier(0.33, 1, 0.68, 1), transform 250ms cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
}
.footer__link:hover {
  color: #FF5722;
  transform: translateX(4px);
}
.footer__bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__bottom p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #6B7280;
  font-size: 0.875rem;
  margin: 0;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  order: -1;
}
@media (min-width: 768px) {
  .footer__social {
    order: 0;
  }
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(55, 65, 81, 0.5);
  color: #D1D5DB;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.footer__social a:hover {
  background-color: #FF5722;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}
.footer__social a svg {
  width: 18px;
  height: 18px;
}
.footer__bottom nav {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__bottom nav {
    justify-content: flex-end;
  }
}
.footer__bottom nav .footer__link {
  padding: 0;
  font-size: 0.75rem;
  color: #6B7280;
}
.footer__bottom nav .footer__link:hover {
  transform: none;
  color: #D1D5DB;
}

.main {
  min-height: calc(100vh - 200px);
}

.btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid #FF5722;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
  font-weight: 600;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.btn--primary:hover:not(:disabled) {
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
  transform: translateY(-2px);
}
.btn--primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.2);
}
.btn--secondary {
  background-color: #FFFFFF;
  color: #FF5722;
  border: 2px solid #FF5722;
  font-weight: 600;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.btn--secondary:hover:not(:disabled) {
  background-color: #FF5722;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--outline {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #D1D5DB;
}
.btn--outline:hover:not(:disabled) {
  border-color: #FF5722;
  color: #FF5722;
}
.btn--ghost {
  background-color: transparent;
  color: #333333;
  border: none;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.btn--ghost:hover:not(:disabled) {
  background-color: #F3F4F6;
  color: #FF5722;
}
.btn--dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: 2px solid transparent;
}
.btn--dark:hover:not(:disabled) {
  background-color: #333333;
}
.btn--light {
  background-color: #FFFFFF;
  color: #1A1A1A;
  border: 2px solid transparent;
}
.btn--light:hover:not(:disabled) {
  background-color: #F9FAFB;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--icon {
  padding: 0.75rem;
  width: 44px;
  height: 44px;
}
.btn--icon.btn--sm {
  padding: 0.5rem;
  width: 36px;
  height: 36px;
}
.btn--icon.btn--lg {
  padding: 1rem;
  width: 52px;
  height: 52px;
}
.btn--loading {
  position: relative;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 9999px;
  animation: spin 0.6s linear infinite;
}
.btn--loading span {
  opacity: 0;
}

.btn-group {
  display: inline-flex;
  gap: 0.5rem;
}
.btn-group--vertical {
  flex-direction: column;
}
.btn-group--attached {
  gap: 0;
}
.btn-group--attached .btn {
  border-radius: 0;
}
.btn-group--attached .btn:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.btn-group--attached .btn:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.btn-group--attached .btn:not(:last-child) {
  border-right-width: 1px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.badge--orange {
  background: rgba(255, 87, 34, 0.1);
  color: #FF5722;
  border: 1px solid rgba(255, 87, 34, 0.2);
}
.badge--orange:hover {
  background: rgba(255, 87, 34, 0.15);
  border-color: rgba(255, 87, 34, 0.3);
}
.badge--outline {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.badge--outline:hover {
  background: rgba(0, 0, 0, 0.05);
}
.badge--solid {
  background: #FF5722;
  color: #FFFFFF;
  border: 1px solid #FF5722;
}
.badge--solid:hover {
  background: #E64A19;
  border-color: #E64A19;
}
.badge--gray {
  background: #F3F4F6;
  color: #374151;
  border: 1px solid #E5E7EB;
}
.badge--white {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid #E5E7EB;
}
.badge--sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
}
.badge--lg {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}
.badge--tech {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #FF5722;
  border: 1.5px solid #FF5722;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge--tech > span:not(:last-child)::after {
  content: "•";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, rgba(255, 87, 34, 0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.deco-circle--sm {
  width: 300px;
  height: 300px;
}
.deco-circle--md {
  width: 400px;
  height: 400px;
}
.deco-circle--lg {
  width: 500px;
  height: 500px;
}
.deco-circle--xl {
  width: 600px;
  height: 600px;
}
.deco-circle--top-right {
  top: -200px;
  right: -200px;
}
.deco-circle--top-left {
  top: -200px;
  left: -200px;
}
.deco-circle--bottom-right {
  bottom: -200px;
  right: -200px;
}
.deco-circle--bottom-left {
  bottom: -200px;
  left: -200px;
}
.deco-circle--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.deco-circle--subtle {
  opacity: 0.4;
}
.deco-circle--visible {
  opacity: 0.8;
}

.accent-line {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.accent-line--sm {
  width: 40px;
  height: 2px;
}
.accent-line--md {
  width: 60px;
  height: 3px;
}
.accent-line--lg {
  width: 80px;
  height: 4px;
}
.accent-line--xl {
  width: 120px;
  height: 4px;
}
.accent-line--full {
  width: 100%;
}
.accent-line--left {
  margin-left: 0;
  margin-right: auto;
}
.accent-line--center {
  margin-left: auto;
  margin-right: auto;
}
.accent-line--right {
  margin-left: auto;
  margin-right: 0;
}
.accent-line--mt-2 {
  margin-top: 0.5rem;
}
.accent-line--mt-4 {
  margin-top: 1rem;
}
.accent-line--mb-2 {
  margin-bottom: 0.5rem;
}
.accent-line--mb-4 {
  margin-bottom: 1rem;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: #FF5722;
}
.text-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.text-highlight--visible::after, .text-highlight.animate-in::after {
  transform: scaleX(1);
}
.text-highlight--static::after {
  transform: scaleX(1);
}

.gradient-overlay {
  position: relative;
  z-index: 1;
}
.gradient-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 87, 34, 0.03) 0%, rgba(255, 87, 34, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
.gradient-overlay--hero::before {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 112, 67, 0.03) 50%, transparent 100%);
}
.gradient-overlay--dark::before {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.deco-shape {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.deco-shape--blob {
  width: 400px;
  height: 400px;
}
.deco-shape--blob img,
.deco-shape--blob svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 200ms ease;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.card__header {
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.card__subtitle {
  font-size: 0.875rem;
  color: #6B7280;
}
.card__body {
  margin-bottom: 1.5rem;
}
.card__body:last-child {
  margin-bottom: 0;
}
.card__footer {
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .card__image {
    height: 240px;
  }
}
.card--flat {
  box-shadow: none;
  border: 1px solid #E5E7EB;
}
.card--flat:hover {
  box-shadow: none;
  border-color: #FF5722;
}
.card--elevated {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card--elevated:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.card--gradient {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #FFFFFF;
}
.card--gradient .card__title {
  color: #FFFFFF;
}
.card--gradient .card__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.card--gradient .card__footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.card--dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
}
.card--dark .card__title {
  color: #FFFFFF;
}
.card--dark .card__subtitle {
  color: #9CA3AF;
}
.card--dark .card__footer {
  border-top-color: #374151;
}
.card--sm {
  padding: 1rem;
}
.card--sm .card__title {
  font-size: 1.125rem;
}
.card--sm .card__image {
  height: 150px;
}
.card--lg {
  padding: 2.5rem;
}
.card--lg .card__title {
  font-size: 1.5rem;
}
.card--lg .card__image {
  height: 280px;
}
.card--horizontal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card--horizontal {
    grid-template-columns: 300px 1fr;
  }
}
.card--horizontal .card__image {
  width: 100%;
  height: 200px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .card--horizontal .card__image {
    height: 100%;
  }
}
.card--interactive {
  cursor: pointer;
  user-select: none;
}
.card--interactive:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.card--interactive:active {
  transform: translateY(-2px);
}
.card--no-hover:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: none;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 200ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-card__image {
    height: 240px;
  }
}
.blog-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #FFF5F0;
  color: #FF5722;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__excerpt {
  color: #4B5563;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
  font-size: 0.875rem;
  color: #6B7280;
}
.blog-card__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card__link {
  color: #FF5722;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms ease;
}
.blog-card__link:hover {
  gap: 0.5rem;
}

.project-card {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 200ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.project-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background-color: #F3F4F6;
}
@media (min-width: 768px) {
  .project-card__image {
    height: 240px;
  }
}
.project-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
.project-card__description {
  color: #4B5563;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.project-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #F3F4F6;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
}
.project-card__link {
  color: #FF5722;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 200ms ease;
}
.project-card__link:hover {
  gap: 0.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav > .btn {
  display: none;
}
@media (min-width: 768px) {
  .nav > .btn {
    display: inline-flex;
  }
}
.nav__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .nav__list {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .nav__list {
    gap: 0.5rem;
  }
}
.nav__item {
  margin: 0;
  position: relative;
}
.nav__item--dropdown .nav__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item--dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}
.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #333333;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 250ms cubic-bezier(0.33, 1, 0.68, 1), background-color 250ms cubic-bezier(0.33, 1, 0.68, 1);
  border-radius: 0.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .nav__link {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
.nav__link:hover {
  color: #FF5722;
  background-color: rgba(255, 87, 34, 0.04);
}
.nav__link--active {
  color: #FF5722;
  font-weight: 600;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 9999px;
}
@media (min-width: 1024px) {
  .nav__link--active::after {
    left: 1rem;
    right: 1rem;
  }
}
.nav__dropdown-icon {
  transition: transform 250ms cubic-bezier(0.33, 1, 0.68, 1);
  flex-shrink: 0;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 380px;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid #E5E7EB;
}
@media (max-width: 1023px) {
  .nav__dropdown {
    display: none;
  }
}
.nav__dropdown-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #F3F4F6;
}
.nav__dropdown-header h3 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.25rem 0;
}
.nav__dropdown-header p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
}
.nav__dropdown-list {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
}
.nav__dropdown-item {
  margin: 0;
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 250ms cubic-bezier(0.33, 1, 0.68, 1);
  gap: 1rem;
}
.nav__dropdown-link:hover {
  background: #FFF9F6;
}
.nav__dropdown-link:hover .nav__dropdown-arrow {
  opacity: 1;
  transform: translateX(0);
}
.nav__dropdown-link-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__dropdown-link-content strong {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  display: block;
}
.nav__dropdown-link-content span {
  font-size: 0.875rem;
  color: #6B7280;
  display: block;
}
.nav__dropdown-arrow {
  flex-shrink: 0;
  color: #FF5722;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__dropdown-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #F3F4F6;
}
.nav__dropdown-view-all {
  display: inline-flex;
  align-items: center;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF5722;
  text-decoration: none;
  gap: 0.25rem;
  transition: gap 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__dropdown-view-all:hover {
  gap: 0.5rem;
}
.nav__toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  border-radius: 0.5rem;
  transition: background-color 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle:hover {
  background-color: #F3F4F6;
}
.nav__toggle:focus-visible {
  outline: 2px solid #FF5722;
  outline-offset: 2px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background-color: #1A1A1A;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  border-radius: 9999px;
}
.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav__toggle--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.nav__mobile {
  position: relative;
  display: none;
  background-color: #F3F4F6;
  padding-top: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  z-index: 90;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .nav__mobile {
    display: none;
  }
}
.nav__mobile--open {
  display: block;
}
.nav__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__mobile-item {
  margin-bottom: 0;
}
.nav__mobile-item--dropdown.nav__mobile-item--open .nav__mobile-dropdown-icon {
  transform: rotate(180deg);
}
.nav__mobile-item--dropdown.nav__mobile-item--open .nav__mobile-submenu {
  max-height: 500px;
  opacity: 1;
}
.nav__mobile-item:last-child {
  padding-top: 10px;
}
.nav__mobile-link {
  display: block;
  padding: 0.5rem;
  color: #333333;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__mobile-link:hover {
  color: #FF5722;
  background-color: #FFF9F6;
}
.nav__mobile-link--active {
  color: #FF5722;
  background-color: #FFF9F6;
  font-weight: 600;
}
.nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  color: #333333;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__mobile-toggle:hover {
  color: #FF5722;
  background-color: #FFF9F6;
}
.nav__mobile-dropdown-icon {
  transition: transform 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.33, 1, 0.68, 1), opacity 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__mobile-submenu-item {
  margin: 0;
}
.nav__mobile-submenu-link {
  display: block;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #4B5563;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.nav__mobile-submenu-link:hover, .nav__mobile-submenu-link:focus {
  color: #FF5722;
  background: #FFF9F6;
  border-left-color: #FF5722;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #9CA3AF;
}
.breadcrumb__link {
  color: #4B5563;
  transition: color 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.breadcrumb__link:hover {
  color: #FF5722;
}
.breadcrumb__current {
  color: #1A1A1A;
  font-weight: 500;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pagination__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination__item {
  margin: 0;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  color: #374151;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid #D1D5DB;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.pagination__link:hover:not(.pagination__link--active):not(.pagination__link--disabled) {
  color: #FF5722;
  border-color: #FF5722;
  background-color: #FFF9F6;
}
.pagination__link--active {
  color: #FFFFFF;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-color: #FF5722;
  pointer-events: none;
}
.pagination__link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination__prev, .pagination__next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tabs__list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #E5E7EB;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  overflow-x: auto;
}
.tabs__item {
  margin: 0;
}
.tabs__link {
  display: block;
  padding: 0.75rem 1rem;
  color: #4B5563;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  white-space: nowrap;
}
.tabs__link:hover {
  color: #FF5722;
}
.tabs__link--active {
  color: #FF5722;
  border-bottom-color: #FF5722;
}
.tabs__content {
  display: none;
}
.tabs__content--active {
  display: block;
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1A1A1A;
  font-size: 0.875rem;
}
.form__label--required::after {
  content: " *";
  color: #FF5722;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A1A1A;
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  transition: all 200ms ease;
}
.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #9CA3AF;
}
.form__input:hover, .form__textarea:hover, .form__select:hover {
  border-color: #9CA3AF;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #FF5722;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}
.form__input:disabled, .form__textarea:disabled, .form__select:disabled {
  background-color: #F3F4F6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form__input--error, .form__textarea--error, .form__select--error {
  border-color: #EF4444;
}
.form__input--error:focus, .form__textarea--error:focus, .form__select--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form__input--success, .form__textarea--success, .form__select--success {
  border-color: #10B981;
}
.form__input--success:focus, .form__textarea--success:focus, .form__select--success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form__help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
}
.form__error {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #EF4444;
  font-weight: 500;
}
.form__success {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #10B981;
  font-weight: 500;
}
.form__checkbox, .form__radio {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form__checkbox input[type=checkbox],
.form__checkbox input[type=radio], .form__radio input[type=checkbox],
.form__radio input[type=radio] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FF5722;
}
.form__checkbox label, .form__radio label {
  flex: 1;
  cursor: pointer;
  font-weight: 400;
}
.form__input-group {
  position: relative;
}
.form__input-group .form__input {
  padding-left: 2.5rem;
}
.form__input-group-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  pointer-events: none;
}
.form__input-group--right .form__input {
  padding-left: 1rem;
  padding-right: 2.5rem;
}
.form__input-group--right .form__input-group-icon {
  left: auto;
  right: 1rem;
}
.form__file {
  position: relative;
}
.form__file input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.form__file-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #FFFFFF;
  border: 2px dashed #D1D5DB;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 200ms ease;
}
.form__file-label:hover {
  border-color: #FF5722;
  background-color: #FFF5F0;
}
.form__file-text {
  color: #4B5563;
}
.form__row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .form__row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.form__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5E7EB;
}
.form__actions--left {
  justify-content: flex-start;
}
.form__actions--center {
  justify-content: center;
}
.form__actions--between {
  justify-content: space-between;
}

.search-form {
  position: relative;
}
.search-form__input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.75rem;
  transition: all 200ms ease;
}
.search-form__input:focus {
  outline: none;
  border-color: #FF5722;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}
.search-form__button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem 1rem;
  background-color: #FF5722;
  color: #FFFFFF;
  border-radius: 0.5rem;
  transition: all 200ms ease;
}
.search-form__button:hover {
  background-color: #E64A19;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-folder {
  position: relative;
  padding-top: 1.5rem;
  transition: transform 200ms ease;
}
.service-folder:hover {
  transform: translateY(-5px);
}

.service-folder__tab {
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 120px;
  height: 1.5rem;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05), inset 0 -1px 2px rgba(255, 255, 255, 0.3);
}
.service-folder__tab--orange {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
}
.service-folder__tab--blue {
  background: linear-gradient(135deg, #4A90E2 0%, #6BA8F5 100%);
}
.service-folder__tab--gold {
  background: linear-gradient(135deg, #F39C12 0%, #F5B642 100%);
}

.service-folder__content {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-folder__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1;
}

.service-folder__title {
  font-size: 1.5rem;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.service-folder__description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  text-align: center;
  flex-grow: 1;
}

.service-folder__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background-color: transparent;
  border: 2px solid #d1d5db;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 200ms ease;
  gap: 0.5rem;
  text-align: center;
}
.service-folder__button:hover {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  transform: translateX(3px);
}

.service-folder__arrow {
  display: inline-block;
  transition: transform 200ms ease;
}
.service-folder__button:hover .service-folder__arrow {
  transform: translateX(4px);
}

@media (max-width: 639px) {
  .service-folder__content {
    padding: 2rem 1.5rem 1.5rem;
    min-height: auto;
  }
  .service-folder__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .service-folder__title {
    font-size: 1.25rem;
  }
  .service-folder__description {
    font-size: 0.9375rem;
  }
}
/**
 * Bannière et modal de consentement aux cookies RGPD
 * Position : Bannière fixe en bas de page
 * Design : Mobile-first, accessible
 */
/* ============================================
   BANNIÈRE DE CONSENTEMENT (Position fixe bas)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.25rem 1rem;
  border-top: 3px solid var(--primary-color, #3b82f6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0s 0.4s;
}
@media (min-width: 768px) {
  .cookie-banner {
    padding: 1.5rem 2rem;
  }
}
.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .cookie-banner__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cookie-banner__content {
  flex: 1;
}

.cookie-banner__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}
@media (min-width: 768px) {
  .cookie-banner__title {
    font-size: 1.25rem;
  }
}

.cookie-banner__description {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  color: #4b5563;
}
@media (min-width: 768px) {
  .cookie-banner__description {
    font-size: 0.9375rem;
  }
}

.cookie-banner__policy-link {
  margin: 0;
  font-size: 0.8125rem;
}

.cookie-banner__link {
  color: var(--primary-color, #3b82f6);
  text-decoration: underline;
  transition: color 0.2s;
}
.cookie-banner__link:hover {
  color: var(--primary-dark, #2563eb);
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .cookie-banner__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

.cookie-banner__btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner__btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}
.cookie-banner__btn:focus {
  outline: 2px solid var(--primary-color, #3b82f6);
  outline-offset: 2px;
}
.cookie-banner__btn--primary {
  background-color: var(--primary-color, #3b82f6);
  color: #ffffff;
}
.cookie-banner__btn--primary:hover {
  background-color: var(--primary-dark, #2563eb);
}
.cookie-banner__btn--secondary {
  background-color: #6b7280;
  color: #ffffff;
}
.cookie-banner__btn--secondary:hover {
  background-color: #4b5563;
}
.cookie-banner__btn--tertiary {
  background-color: transparent;
  color: var(--primary-color, #3b82f6);
  border: 2px solid var(--primary-color, #3b82f6);
}
.cookie-banner__btn--tertiary:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

/* ============================================
   MODAL DE PRÉFÉRENCES DE COOKIES
   ============================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}
.cookie-modal[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.cookie-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}
@media (min-width: 768px) {
  .cookie-modal__title {
    font-size: 1.5rem;
  }
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}
.cookie-modal__close:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}
.cookie-modal__close:focus {
  outline: 2px solid var(--primary-color, #3b82f6);
  outline-offset: 2px;
}

.cookie-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal__intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
}

/* ============================================
   CATÉGORIES DE COOKIES
   ============================================ */
.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category__header {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 640px) {
  .cookie-category__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.cookie-category__info {
  flex: 1;
}

.cookie-category__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .cookie-category__title {
    font-size: 1.125rem;
  }
}

.cookie-category__icon {
  font-size: 1.25rem;
}

.cookie-category__description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 0.75rem 0;
}

.cookie-category__details {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  padding: 0.75rem;
  background-color: #ffffff;
  border-left: 3px solid #d1d5db;
  border-radius: 4px;
}
.cookie-category__details strong {
  color: #4b5563;
}

.cookie-category__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

/* ============================================
   TOGGLE SWITCH
   ============================================ */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.cookie-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-toggle input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle__slider {
  background-color: var(--primary-color, #3b82f6);
}
.cookie-toggle input[type=checkbox]:checked + .cookie-toggle__slider:before {
  transform: translateX(1.5rem);
}
.cookie-toggle input[type=checkbox]:focus + .cookie-toggle__slider {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.cookie-toggle input[type=checkbox]:disabled + .cookie-toggle__slider {
  background-color: #d1d5db;
  cursor: not-allowed;
}
.cookie-toggle input[type=checkbox]:disabled + .cookie-toggle__slider:before {
  background-color: #f3f4f6;
}

.cookie-toggle__slider {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
  background-color: #9ca3af;
  border-radius: 1.5rem;
  transition: background-color 0.3s;
}
.cookie-toggle__slider:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  left: 0.125rem;
  top: 0.125rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
}

/* ============================================
   FOOTER DU MODAL
   ============================================ */
.cookie-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cookie-modal__footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.cookie-modal__btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-modal__btn:focus {
  outline: 2px solid var(--primary-color, #3b82f6);
  outline-offset: 2px;
}
.cookie-modal__btn--primary {
  background-color: var(--primary-color, #3b82f6);
  color: #ffffff;
}
.cookie-modal__btn--primary:hover {
  background-color: var(--primary-dark, #2563eb);
}
.cookie-modal__btn--secondary {
  background-color: #6b7280;
  color: #ffffff;
}
.cookie-modal__btn--secondary:hover {
  background-color: #4b5563;
}

.cookie-modal__legal {
  padding: 0 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
.cookie-modal__legal p {
  margin: 0;
  color: #6b7280;
}
.cookie-modal__legal small {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cookie-modal__link {
  color: var(--primary-color, #3b82f6);
  text-decoration: underline;
}
.cookie-modal__link:hover {
  color: var(--primary-dark, #2563eb);
}

/* ============================================
   ACCESSIBILITÉ
   ============================================ */
.cookie-banner,
.cookie-modal {
  /* Respect des préférences de mouvement réduit */
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-modal {
    animation: none;
  }
  .cookie-banner .cookie-modal__content,
  .cookie-modal .cookie-modal__content {
    animation: none;
  }
}

/* Mode sombre (optionnel, si implémenté plus tard) */
@media (prefers-color-scheme: dark) {
  .cookie-banner {
    background: #1f2937;
    border-top-color: var(--primary-color, #3b82f6);
  }
  .cookie-banner .cookie-banner__title {
    color: #f9fafb;
  }
  .cookie-banner .cookie-banner__description {
    color: #d1d5db;
  }
  .cookie-modal__content {
    background: #1f2937;
  }
  .cookie-modal__header {
    border-bottom-color: #374151;
  }
  .cookie-modal__title {
    color: #f9fafb;
  }
  .cookie-modal__close {
    color: #9ca3af;
  }
  .cookie-modal__close:hover {
    background-color: #374151;
    color: #f9fafb;
  }
  .cookie-modal__intro {
    color: #d1d5db;
  }
  .cookie-category {
    background-color: #111827;
    border-color: #374151;
  }
  .cookie-category__title {
    color: #f9fafb;
  }
  .cookie-category__description {
    color: #9ca3af;
  }
  .cookie-category__details {
    background-color: #1f2937;
    border-left-color: #4b5563;
    color: #9ca3af;
  }
  .cookie-category__details strong {
    color: #d1d5db;
  }
  .cookie-modal__footer {
    border-top-color: #374151;
  }
  .cookie-modal__legal {
    color: #9ca3af;
  }
}
.security-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #FFF5F0 0%, #F9FAFB 100%);
}
@media (max-width: 640px) {
  .security-page {
    padding: 1.5rem 1rem;
  }
}

.security-container {
  width: 100%;
  max-width: 28rem;
}
@media (max-width: 640px) {
  .security-container {
    max-width: 100%;
  }
}

.security-container--wide {
  max-width: 48rem;
}

.security-container--extra-wide {
  max-width: 56rem;
}

.security-header {
  text-align: center;
  margin-bottom: 2rem;
}
.security-header h1, .security-header h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
  .security-header h1, .security-header h2 {
    font-size: 1.5rem;
  }
}
.security-header p {
  font-size: 0.875rem;
  color: #4B5563;
}

.security-box {
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .security-box {
    padding: 1rem;
  }
}
.security-box h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
.security-box h3 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
.security-box p {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.625;
}
.security-box ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.security-box ul li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
.security-box a {
  color: #FF5722;
  text-decoration: none;
  transition: color 200ms ease;
}
.security-box a:hover {
  color: #E64A19;
  text-decoration: underline;
}

.flash-message {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
.flash-message p {
  font-size: 0.875rem;
  margin: 0;
}
.flash-message--error {
  background-color: #FEF2F2;
  border-color: #FCA5A5;
  color: #991B1B;
}
.flash-message--success {
  background-color: #F0FDF4;
  border-color: #86EFAC;
  color: #166534;
}
.flash-message--warning {
  background-color: #FFFBEB;
  border-color: #FCD34D;
  color: #92400E;
}
.flash-message--info {
  background-color: #EFF6FF;
  border-color: #93C5FD;
  color: #1E40AF;
}

.security-form {
  margin-top: 2rem;
}
.security-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.security-form label.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.security-form input[type=text],
.security-form input[type=email],
.security-form input[type=password] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  transition: all 200ms ease;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.security-form input[type=text]::placeholder,
.security-form input[type=email]::placeholder,
.security-form input[type=password]::placeholder {
  color: #6B7280;
}
.security-form input[type=text]:focus,
.security-form input[type=email]:focus,
.security-form input[type=password]:focus {
  outline: none;
  border-color: #FF5722;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}
.security-form input[type=text]:disabled,
.security-form input[type=email]:disabled,
.security-form input[type=password]:disabled {
  background-color: #F3F4F6;
  cursor: not-allowed;
}
.security-form input[type=text].input-code {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  font-family: "Courier New", monospace;
  padding: 0.75rem;
}
.security-form .form-group {
  margin-bottom: 0.25rem;
}
.security-form .btn {
  width: 100%;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.security-form .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.security-form .btn-primary {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #FFFFFF;
}
.security-form .btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.security-form .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.security-form .btn-secondary {
  background-color: #E5E7EB;
  color: #374151;
}
.security-form .btn-secondary:hover:not(:disabled) {
  background-color: #D1D5DB;
}
.security-form .btn-success {
  background-color: #10B981;
  color: #FFFFFF;
}
.security-form .btn-success:hover:not(:disabled) {
  background-color: #059669;
}
.security-form .btn-warning {
  background-color: #F59E0B;
  color: #FFFFFF;
}
.security-form .btn-warning:hover:not(:disabled) {
  background-color: #D97706;
}
.security-form .btn-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.security-form .btn-group .btn {
  flex: 1;
}

.info-box {
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
}
.info-box--gray {
  background-color: #F9FAFB;
  border-color: #E5E7EB;
}
.info-box--blue {
  background-color: #EFF6FF;
  border-color: #BFDBFE;
}
.info-box--blue p, .info-box--blue ul li {
  color: #1E40AF;
}
.info-box--yellow {
  background-color: #FFFBEB;
  border-color: #FDE68A;
}
.info-box--yellow p {
  color: #92400E;
}
.info-box--green {
  background-color: #F0FDF4;
  border-color: #BBF7D0;
}
.info-box--green p {
  color: #166534;
}
.info-box p {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.625;
}
.info-box p strong {
  font-weight: 600;
}
.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.info-box ul li {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
.info-box ul li:last-child {
  margin-bottom: 0;
}
.info-box ul li svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.secret-display {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.secret-display code {
  font-family: "Courier New", monospace;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #FF5722;
  font-weight: 600;
}
.secret-display button {
  margin-left: 1rem;
  font-size: 0.875rem;
  color: #FF5722;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms ease;
  white-space: nowrap;
}
.secret-display button:hover {
  color: #E64A19;
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 640px) {
  .config-grid {
    grid-template-columns: 1fr;
  }
}
.config-grid .config-item {
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.config-grid .config-item label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}
.config-grid .config-item code {
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.status-badge--enabled {
  background-color: #D1FAE5;
  color: #065F46;
}
.status-badge--disabled {
  background-color: #F3F4F6;
  color: #1F2937;
}

.text-link {
  text-align: center;
  margin-top: 1.5rem;
}
.text-link a {
  font-size: 0.875rem;
  color: #4B5563;
  text-decoration: none;
  transition: color 200ms ease;
}
.text-link a:hover {
  color: #111827;
}

.back-link {
  text-align: center;
  margin-top: 1.5rem;
}
.back-link a {
  color: #FF5722;
  text-decoration: none;
  transition: color 200ms ease;
}
.back-link a:hover {
  color: #E64A19;
}

.security-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.security-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
}
.security-features li:before {
  content: "✓";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
}
.security-features li strong {
  font-weight: 600;
}

.contact-page {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
}

.contact-hero-refined {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FFF9F6 0%, white 100%);
  padding: 4rem 1rem 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-hero-refined {
    min-height: 45vh;
    padding: 5rem 2rem 4rem;
  }
}
.contact-hero-refined::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .contact-hero-refined::before {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
  }
}
.contact-hero-refined .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.contact-hero-refined .badge-refined {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF5722;
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .contact-hero-refined .badge-refined {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}
.contact-hero-refined h1 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact-hero-refined h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  .contact-hero-refined h1 {
    font-size: 3rem;
  }
}
.contact-hero-refined h1 .highlight-underline {
  position: relative;
  display: inline-block;
}
.contact-hero-refined h1 .highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}
.contact-hero-refined .lead-text {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) {
  .contact-hero-refined .lead-text {
    font-size: 1.25rem;
  }
}

.contact-content-refined {
  padding: 3rem 1rem;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .contact-content-refined {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-content-refined {
    padding: 5rem 2rem;
  }
}

.contact-grid-refined {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-grid-refined {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: start;
  }
}

.contact-form-wrapper-refined {
  order: 1;
}

.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.alert .alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.alert.alert-success {
  background: #E8F5E9;
  color: #2E7D32;
  border-left: 4px solid #4CAF50;
}
.alert.alert-error {
  background: #FFEBEE;
  color: #C62828;
  border-left: 4px solid #F44336;
}

.contact-form-refined {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form-refined {
    gap: 2rem;
  }
}

.form-group-refined {
  display: flex;
  flex-direction: column;
}
.form-group-refined label {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.form-group-refined input,
.form-group-refined select,
.form-group-refined textarea {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  background: #FFFFFF;
  color: #1A1A1A;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.form-group-refined input:focus,
.form-group-refined select:focus,
.form-group-refined textarea:focus {
  outline: none;
  border-color: #FF5722;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}
.form-group-refined input::placeholder,
.form-group-refined select::placeholder,
.form-group-refined textarea::placeholder {
  color: #9CA3AF;
}
.form-group-refined textarea {
  height: auto;
  min-height: 120px;
  padding: 0.75rem 1rem;
  resize: vertical;
  line-height: 1.6;
}
.form-group-refined ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.form-group-refined ul li {
  font-size: 0.875rem;
  color: #DC2626;
  margin-bottom: 0.25rem;
}
.form-group-refined ul li:last-child {
  margin-bottom: 0;
}

.captcha-wrapper-refined label {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.captcha-wrapper-refined .h-captcha {
  display: inline-block;
  transform-origin: left top;
}
.captcha-wrapper-refined .captcha-help {
  font-size: 0.875rem;
  color: #4B5563;
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}

.btn-primary-refined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 56px;
  padding: 0 2rem;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
  width: 100%;
}
@media (min-width: 768px) {
  .btn-primary-refined {
    width: auto;
    min-width: 240px;
  }
}
.btn-primary-refined .btn-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.btn-primary-refined:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}
.btn-primary-refined:hover .btn-icon {
  transform: translateX(4px);
}
.btn-primary-refined:active {
  transform: translateY(0);
}
.btn-primary-refined:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-info-refined {
  order: 2;
}
@media (min-width: 1024px) {
  .contact-info-refined {
    position: sticky;
    top: 2rem;
  }
}

.info-card-refined {
  background: #FFF9F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .info-card-refined {
    padding: 2.5rem;
  }
}

.info-item-refined {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-item-refined:last-of-type {
  margin-bottom: 2rem;
}
.info-item-refined .info-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #FF5722;
}
@media (min-width: 768px) {
  .info-item-refined .info-icon {
    width: 36px;
    height: 36px;
  }
}
.info-item-refined .info-content {
  flex: 1;
}
.info-item-refined .info-content h3 {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FF5722;
  margin-bottom: 0.5rem;
}
.info-item-refined .info-content p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.info-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) {
  .info-badges {
    flex-direction: row;
    gap: 1rem;
  }
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.info-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.info-badge--primary {
  background: rgba(255, 87, 34, 0.1);
  color: #FF5722;
  border: 1px solid rgba(255, 87, 34, 0.2);
}
.info-badge--primary:hover {
  background: rgba(255, 87, 34, 0.15);
}
.info-badge--secondary {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.info-badge--secondary:hover {
  background: rgba(34, 197, 94, 0.15);
}

@media (max-width: 1023px) {
  .contact-info-refined {
    order: 2;
  }
  .contact-form-wrapper-refined {
    order: 1;
  }
}
.contact-form-wrapper-refined,
.contact-info-refined {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.contact-form-wrapper-refined.contact-info-refined,
.contact-info-refined.contact-info-refined {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-page {
  --section-py: 3rem;
  --card-radius: 1rem;
}
@media (min-width: 768px) {
  .home-page {
    --section-py: 5rem;
  }
}
@media (min-width: 1024px) {
  .home-page {
    --section-py: 6rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
}
@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
    padding: 0;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 87, 34, 0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 0% 100%, rgba(255, 87, 34, 0.05) 0%, transparent 50%), linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 1280px) {
  .hero__grid {
    gap: 5rem;
  }
}
.hero__content {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF5722;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .hero__badge {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__title-highlight {
  display: block;
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 50%, #FFA726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 1024px) {
  .hero__title-highlight {
    display: inline;
  }
}
.hero__subtitle {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.125rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 480px;
  }
}
.hero__subtitle strong {
  color: #1A1A1A;
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
    margin-bottom: 2.5rem;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .hero__btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}
.hero__btn--primary {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}
.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}
.hero__btn--primary svg {
  transition: transform 0.25s ease;
}
.hero__btn--primary:hover svg {
  transform: translateX(3px);
}
.hero__btn--secondary {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1.5px solid #E5E7EB;
}
.hero__btn--secondary:hover {
  border-color: #FF5722;
  color: #FF5722;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__proof {
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .hero__proof {
    justify-content: flex-start;
  }
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .hero__proof-item {
    align-items: flex-start;
  }
}
.hero__proof-number {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF5722;
  font-variant-numeric: tabular-nums;
  min-width: 2.5ch;
}
@media (min-width: 768px) {
  .hero__proof-number {
    font-size: 1.5rem;
    min-width: 3ch;
  }
}
.hero__proof-label {
  font-size: 0.75rem;
  color: #6B7280;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero__proof-label {
    font-size: 0.8125rem;
  }
}
.hero__proof-divider {
  display: none;
}
@media (min-width: 640px) {
  .hero__proof-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #E5E7EB, transparent);
  }
}
.hero__visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero__visual {
    display: block;
    position: relative;
    contain: layout paint;
  }
}
.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  contain: layout;
}
.hero__mockup-desktop {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.hero__mockup-topbar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #F5F5F5;
  border-bottom: 1px solid #E5E5E5;
}
.hero__mockup-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0E0E0;
}
.hero__mockup-topbar span:first-child {
  background: #FF5F56;
}
.hero__mockup-topbar span:nth-child(2) {
  background: #FFBD2E;
}
.hero__mockup-topbar span:nth-child(3) {
  background: #27CA40;
}
.hero__mockup-screen {
  padding: 16px;
  min-height: 280px;
  background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
  contain: content;
}
.hero__mockup-nav {
  height: 12px;
  background: #F3F4F6;
  border-radius: 6px;
  margin-bottom: 16px;
  width: 70%;
}
.hero__mockup-hero {
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(255, 87, 34, 0.05) 100%);
  border-radius: 8px;
  margin-bottom: 16px;
}
.hero__mockup-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero__mockup-block {
  height: 60px;
  background: #F3F4F6;
  border-radius: 6px;
}
.hero__mockup-mobile {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 140px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: rotate(3deg);
}
.hero__mockup-notch {
  width: 50%;
  height: 16px;
  margin: 8px auto;
  background: #F0F0F0;
  border-radius: 10px;
}
.hero__mockup-app {
  padding: 12px;
  min-height: 200px;
}
.hero__mockup-app-header {
  height: 24px;
  background: linear-gradient(90deg, #FF5722 0%, #FF7043 100%);
  border-radius: 6px;
  margin-bottom: 12px;
}
.hero__mockup-app-card {
  height: 50px;
  background: #F3F4F6;
  border-radius: 8px;
  margin-bottom: 10px;
}
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}
.hero__float--code {
  top: 20%;
  left: -20px;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  color: #FF5722;
  animation-delay: 0s;
}
.hero__float--check {
  top: 50%;
  right: -15px;
  width: 36px;
  height: 36px;
  background: #22c55e;
  color: #FFFFFF;
  animation-delay: 0.5s;
}
.hero__float--star {
  bottom: 30%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: #FBBF24;
  color: #FFFFFF;
  animation-delay: 1s;
}
.hero__scroll {
  display: none;
}
@media (min-width: 1024px) {
  .hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}
.hero__scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, #D1D5DB, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.trust {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #FFF9F6 0%, #FFF5F0 100%);
  border-top: 1px solid rgba(255, 87, 34, 0.08);
  border-bottom: 1px solid rgba(255, 87, 34, 0.08);
}
.trust__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .trust__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .trust__grid {
    gap: 2rem;
  }
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  color: #FF5722;
}
@media (min-width: 768px) {
  .trust__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
}
.trust__content {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}
.trust__number {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF5722;
  line-height: 1;
}
@media (min-width: 768px) {
  .trust__number {
    font-size: 2.5rem;
  }
}
.trust__unit {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FF5722;
}
.trust__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6B7280;
}
@media (min-width: 768px) {
  .trust__label {
    font-size: 0.8125rem;
  }
}
.trust__divider {
  display: none;
}

.advantages {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #FFF8F5 0%, #FFF4EE 100%);
  border-top: 1px solid rgba(255, 87, 34, 0.06);
}
.advantages__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .advantages__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.advantages__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) {
  .advantages__header {
    margin-bottom: 3.5rem;
  }
}
.advantages__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF5722;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .advantages__eyebrow {
    font-size: 0.75rem;
  }
}
.advantages__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .advantages__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .advantages__title {
    font-size: 2.25rem;
  }
}
.advantages__subtitle {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .advantages__subtitle {
    font-size: 1rem;
  }
}
.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.advantage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: var(--card-radius);
  padding: 1.75rem 1.25rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .advantage-card {
    padding: 2rem 1.5rem;
  }
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 87, 34, 0.2);
}
.advantage-card:hover .advantage-card__icon {
  transform: scale(1.1);
  background: rgba(255, 87, 34, 0.12);
}
.advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 87, 34, 0.08);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #FF5722;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .advantage-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
}
.advantage-card__icon svg {
  width: 26px;
  height: 26px;
}
@media (min-width: 768px) {
  .advantage-card__icon svg {
    width: 30px;
    height: 30px;
  }
}
.advantage-card__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .advantage-card__title {
    font-size: 1.0625rem;
  }
}
.advantage-card__description {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}
@media (min-width: 768px) {
  .advantage-card__description {
    font-size: 0.875rem;
  }
}
.advantage-card--highlight {
  background: linear-gradient(145deg, rgba(255, 87, 34, 0.04) 0%, rgba(255, 87, 34, 0.01) 100%);
  border-color: rgba(255, 87, 34, 0.15);
}
.advantage-card--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5722, #FF7043);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #1F1F1F 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .marquee {
    padding: 1.25rem 0;
  }
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .marquee::before, .marquee::after {
    width: 120px;
  }
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #1A1A1A 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #1F1F1F 0%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee__track:hover {
  animation-play-state: paused;
}
.marquee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .marquee__content {
    gap: 3rem;
    padding-right: 3rem;
  }
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .marquee__item {
    font-size: 0.875rem;
    gap: 1rem;
  }
}
.marquee__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 87, 34, 0.15);
  border-radius: 6px;
  color: #FF5722;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .marquee__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}
.marquee__icon svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .marquee__icon svg {
    width: 16px;
    height: 16px;
  }
}
.marquee__separator {
  color: #FF5722;
  font-size: 1.25rem;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .marquee__separator {
    font-size: 1.5rem;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}
.services {
  padding: var(--section-py) 0;
  background: #FFFFFF;
}
.services__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .services__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
@media (min-width: 768px) {
  .services__header {
    margin-bottom: 3.5rem;
  }
}
.services__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF5722;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .services__eyebrow {
    font-size: 0.75rem;
  }
}
.services__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .services__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .services__title {
    font-size: 2.25rem;
  }
}
.services__subtitle {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .services__subtitle {
    font-size: 1rem;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.services__cta {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .services__cta {
    margin-top: 3rem;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-card {
    padding: 1.75rem;
  }
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.service-card:hover .service-card__glow {
  opacity: 1;
}
.service-card:hover .service-card__icon {
  color: #FF5722;
}
.service-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5722, #FF7043);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: #FF5722;
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 20px;
}
.service-card--featured {
  border-color: rgba(255, 87, 34, 0.3);
}
.service-card--featured .service-card__glow {
  opacity: 1;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: #4B5563;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
}
.service-card__content {
  flex: 1;
}
.service-card__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .service-card__title {
    font-size: 1.25rem;
  }
}
.service-card__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 1rem;
}
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
}
.service-card__features li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #FF5722;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
  margin-top: auto;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.service-card__tag {
  padding: 0.2rem 0.4rem;
  background: #F9FAFB;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FF5722;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.service-card__link:hover {
  gap: 0.5rem;
}

.faq {
  padding: var(--section-py) 0;
  background: #F8F9FA;
}
.faq__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 720px;
}
@media (min-width: 768px) {
  .faq__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .faq__header {
    margin-bottom: 2.5rem;
  }
}
.faq__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF5722;
  margin-bottom: 0.5rem;
}
.faq__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .faq__title {
    font-size: 2rem;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.faq__item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.faq__item[open] .faq__icon-vertical {
  transform: rotate(90deg);
  opacity: 0;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
@media (min-width: 768px) {
  .faq__question {
    padding: 1.25rem 1.5rem;
  }
}
.faq__question-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A1A1A;
  text-align: left;
}
@media (min-width: 768px) {
  .faq__question-text {
    font-size: 1rem;
  }
}
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #9CA3AF;
}
.faq__icon line {
  transition: all 0.25s ease;
}
.faq__icon-vertical {
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq__answer {
  padding: 0 1.25rem 1.25rem;
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .faq__answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
  }
}
.faq__answer p {
  margin: 0 0 0.75rem;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}
.faq__answer strong {
  color: #1A1A1A;
  font-weight: 600;
}
.faq__answer ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.faq__answer ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.375rem;
}
.faq__answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #FF5722;
  border-radius: 50%;
}
.faq__answer ul li:last-child {
  margin-bottom: 0;
}
.faq__cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5E7EB;
}
.faq__cta p {
  font-size: 0.9375rem;
  color: #4B5563;
  margin-bottom: 0.75rem;
}

.cta-final {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}
.cta-final__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 50%);
}
.cta-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.cta-final__container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .cta-final__container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cta-final__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-final__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF5722;
  margin-bottom: 0.75rem;
}
.cta-final__title {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cta-final__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .cta-final__title {
    font-size: 2.5rem;
  }
}
.cta-final__description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-final__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.cta-final__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-final__actions {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}
.cta-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .cta-final__btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}
.cta-final__btn--primary {
  background: linear-gradient(135deg, #FF5722, #FF7043);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}
.cta-final__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
}
.cta-final__btn--primary svg {
  transition: transform 0.25s ease;
}
.cta-final__btn--primary:hover svg {
  transform: translateX(3px);
}
.cta-final__btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.cta-final__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: transparent;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  color: #1A1A1A;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn--outline:hover {
  border-color: #FF5722;
  color: #FF5722;
}
.btn--outline:hover svg {
  transform: translateX(3px);
}
.btn--outline svg {
  transition: transform 0.25s ease;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-8px) translateZ(0);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge-dot,
  .hero__float,
  .hero__scroll-line {
    animation: none;
    will-change: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.service-refined .service-hero-refined {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F6 100%);
  padding: 4rem 1rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .service-refined .service-hero-refined {
    min-height: 70vh;
    padding: 5rem 2rem 4rem;
  }
}
.service-refined .service-hero-refined::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .service-refined .service-hero-refined::before {
    width: 700px;
    height: 700px;
    top: -300px;
    right: -300px;
  }
}
.service-refined .service-hero-refined .container {
  position: relative;
  z-index: 1;
}
.service-refined .service-hero-refined .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.service-refined .service-hero-refined .breadcrumb a {
  color: #4B5563;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.33, 1, 0.68, 1);
}
.service-refined .service-hero-refined .breadcrumb a:hover {
  color: #FF5722;
}
.service-refined .service-hero-refined .breadcrumb .separator {
  color: #9CA3AF;
}
.service-refined .service-hero-refined .breadcrumb .current {
  color: #374151;
  font-weight: 500;
}
.service-refined .service-hero-refined .service-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 87, 34, 0.1);
  color: #FF5722;
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 9999px;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .service-refined .service-hero-refined .service-badge {
    font-size: 0.75rem;
    padding: 0.625rem 1.25rem;
  }
}
.service-refined .service-hero-refined h1 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .service-refined .service-hero-refined h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .service-refined .service-hero-refined h1 {
    font-size: 3.5rem;
  }
}
.service-refined .service-hero-refined h1 .highlight {
  position: relative;
  display: inline-block;
}
.service-refined .service-hero-refined h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}
.service-refined .service-hero-refined .lead {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 700px;
}
@media (min-width: 768px) {
  .service-refined .service-hero-refined .lead {
    font-size: 1.25rem;
  }
}
.service-refined .service-hero-refined .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .service-refined .service-hero-refined .hero-actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.service-refined .service-intro {
  padding: 3rem 1rem;
  background: #FFFFFF;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .service-refined .service-intro {
    padding: 4rem 2rem;
  }
}
.service-refined .service-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
  pointer-events: none;
}
.service-refined .service-intro .intro-content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .service-refined .service-intro .intro-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.service-refined .service-intro .intro-content p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
}
@media (min-width: 768px) {
  .service-refined .service-intro .intro-content p {
    font-size: 1.125rem;
  }
}
.service-refined .service-benefits {
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #F8F9FA 0%, #f2f4f6 100%);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .service-refined .service-benefits {
    padding: 4rem 2rem;
  }
}
.service-refined .service-benefits::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.service-refined .service-benefits .container {
  position: relative;
  z-index: 1;
}
.service-refined .service-benefits .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .service-refined .service-benefits .section-header {
    margin-bottom: 4rem;
  }
}
.service-refined .service-benefits .section-header h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .service-refined .service-benefits .section-header h2 {
    font-size: 3rem;
  }
}
.service-refined .service-benefits .section-header h2 .highlight {
  color: #FF5722;
}
.service-refined .service-benefits .section-header p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 700px;
  margin: 0 auto;
}
.service-refined .service-benefits .benefits-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-refined .service-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.service-refined .service-benefits .benefit-card {
  position: relative;
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #FF5722;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.service-refined .service-benefits .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(255, 87, 34, 0.08);
  border-color: rgba(255, 87, 34, 0.2);
}
.service-refined .service-benefits .benefit-card .benefit-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255, 87, 34, 0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.service-refined .service-benefits .benefit-card .benefit-icon {
  width: 48px;
  height: 48px;
  color: #FF5722;
  margin-bottom: 1.25rem;
}
.service-refined .service-benefits .benefit-card .benefit-icon svg {
  width: 100%;
  height: 100%;
}
.service-refined .service-benefits .benefit-card h3 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
.service-refined .service-benefits .benefit-card p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}
.service-refined .service-process {
  padding: 3rem 1rem;
  background: #FFFFFF;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .service-refined .service-process {
    padding: 4rem 2rem;
  }
}
.service-refined .service-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}
.service-refined .service-process .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .service-refined .service-process .section-header {
    margin-bottom: 4rem;
  }
}
.service-refined .service-process .section-header h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .service-refined .service-process .section-header h2 {
    font-size: 3rem;
  }
}
.service-refined .service-process .process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .service-refined .service-process .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}
.service-refined .service-process .process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg, #FF5722 0%, #FF7043 100%);
}
@media (min-width: 1024px) {
  .service-refined .service-process .process-timeline::before {
    left: 0;
    right: 0;
    top: 30px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, #FF5722 0%, #FF7043 100%);
  }
}
.service-refined .service-process .process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .service-refined .service-process .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 1.5rem;
  }
}
.service-refined .service-process .process-step .step-circle {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}
.service-refined .service-process .process-step .step-circle .step-number {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}
.service-refined .service-process .process-step .step-content {
  flex: 1;
  padding-top: 0.75rem;
}
@media (min-width: 1024px) {
  .service-refined .service-process .process-step .step-content {
    padding-top: 0;
  }
}
.service-refined .service-process .process-step .step-content h3 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.service-refined .service-process .process-step .step-content p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}
.service-refined .service-technologies {
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #FFF9F6 0%, #fffcfb 100%);
  position: relative;
  border-top: 1px solid rgba(255, 87, 34, 0.08);
  border-bottom: 1px solid rgba(255, 87, 34, 0.08);
}
@media (min-width: 768px) {
  .service-refined .service-technologies {
    padding: 4rem 2rem;
  }
}
.service-refined .service-technologies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255, 87, 34, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.service-refined .service-technologies .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.service-refined .service-technologies .section-header h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .service-refined .service-technologies .section-header h2 {
    font-size: 3rem;
  }
}
.service-refined .service-technologies .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .service-refined .service-technologies .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .service-refined .service-technologies .tech-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .service-refined .service-technologies .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.service-refined .service-technologies .tech-item {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.service-refined .service-technologies .tech-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(255, 87, 34, 0.08);
  border-color: #FF5722;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 87, 34, 0.02) 100%);
}
.service-refined .service-technologies .tech-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .service-refined .service-technologies .tech-item img {
    width: 60px;
    height: 60px;
  }
}
.service-refined .service-technologies .tech-item span {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-align: center;
}
.service-refined .service-projects {
  padding: 3rem 1rem;
  background: #FFFFFF;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .service-refined .service-projects {
    padding: 4rem 2rem;
  }
}
.service-refined .service-projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}
.service-refined .service-projects .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.service-refined .service-projects .section-header h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1A1A1A;
}
@media (min-width: 768px) {
  .service-refined .service-projects .section-header h2 {
    font-size: 3rem;
  }
}
.service-refined .service-projects .projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-refined .service-projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .service-refined .service-projects .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-refined .service-projects .project-card {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
}
.service-refined .service-projects .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(255, 87, 34, 0.1);
  border-color: #FF5722;
}
.service-refined .service-projects .project-card:hover .project-image img {
  transform: scale(1.08);
}
.service-refined .service-projects .project-card .project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F3F4F6;
}
.service-refined .service-projects .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.33, 1, 0.68, 1);
}
.service-refined .service-projects .project-card .project-content {
  padding: 1.5rem;
}
.service-refined .service-projects .project-card .project-content h3 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.service-refined .service-projects .project-card .project-content .project-client {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 0.75rem;
}
.service-refined .service-projects .project-card .project-content p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 1rem;
}
.service-refined .service-projects .project-card .project-content .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-refined .service-projects .project-card .project-content .project-tags .tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 87, 34, 0.1);
  color: #FF5722;
  border-radius: 9999px;
  font-weight: 500;
}
.service-refined .service-cta-refined {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #FFF9F6 0%, white 50%, #FFFFFF 100%);
  overflow: hidden;
  border-top: 2px solid rgba(255, 87, 34, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .service-refined .service-cta-refined {
    padding: 5rem 2rem;
  }
}
.service-refined .service-cta-refined::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 87, 34, 0.08) 0%, transparent 50%), linear-gradient(180deg, rgba(255, 87, 34, 0.03) 0%, rgba(255, 87, 34, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
.service-refined .service-cta-refined::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.service-refined .service-cta-refined .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.service-refined .service-cta-refined h2 {
  font-family: "Sora", "Sora Fallback", "Manrope", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .service-refined .service-cta-refined h2 {
    font-size: 3rem;
  }
}
.service-refined .service-cta-refined h2 .highlight {
  position: relative;
  display: inline-block;
}
.service-refined .service-cta-refined h2 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}
.service-refined .service-cta-refined p {
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .service-refined .service-cta-refined p {
    font-size: 1.25rem;
  }
}

.btn-primary-refined {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  color: #FFFFFF;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-primary-refined {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
}
.btn-primary-refined:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}
.btn-primary-refined:active {
  transform: translateY(0);
}

.btn-secondary-refined {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #FFFFFF;
  color: #FF5722;
  font-family: "Manrope", "Manrope Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #FF5722;
  border-radius: 0.5rem;
  transition: all 250ms cubic-bezier(0.33, 1, 0.68, 1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-secondary-refined {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
}
.btn-secondary-refined:hover {
  background: rgba(255, 87, 34, 0.05);
  transform: translateY(-2px);
}
.btn-secondary-refined:active {
  transform: translateY(0);
}

.accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
  margin: 1rem auto;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.33, 1, 0.68, 1), transform 600ms cubic-bezier(0.33, 1, 0.68, 1);
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 100ms;
}

.stagger-2 {
  transition-delay: 200ms;
}

.stagger-3 {
  transition-delay: 300ms;
}

.stagger-4 {
  transition-delay: 400ms;
}

.stagger-5 {
  transition-delay: 500ms;
}

.stagger-6 {
  transition-delay: 600ms;
}

.stagger-7 {
  transition-delay: 700ms;
}

.stagger-8 {
  transition-delay: 800ms;
}

.stagger-9 {
  transition-delay: 900ms;
}

.stagger-10 {
  transition-delay: 1000ms;
}

/* Pricing cards specific styles */
.pricing-cards-section {
  padding: 4rem 1rem;
  background: white;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-card {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 87, 34, 0.3);
}

.pricing-card--popular {
  border-color: #FF5722;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.15);
  transform: scale(1.05);
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.pricing-card__subtitle {
  font-size: 0.9375rem;
  color: #6B7280;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.price-amount {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #FF5722;
  line-height: 1;
}

.price-period {
  font-size: 1.25rem;
  color: #6B7280;
  margin-left: 0.5rem;
}

.price-starting {
  display: block;
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 0.5rem;
}

.pricing-card__description {
  text-align: center;
  color: #4B5563;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.pricing-card__features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #4B5563;
}

.feature-item--highlight {
  background: rgba(255, 87, 34, 0.05);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border-left: 3px solid #FF5722;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: #FF5722;
  margin-top: 2px;
}

.pricing-card__cta {
  margin-bottom: 1.5rem;
}

.pricing-card__cta .btn-primary-refined,
.pricing-card__cta .btn-secondary-refined {
  width: 100%;
  justify-content: center;
}

.pricing-card__delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* FAQ details animation */
details[open] summary svg {
  transform: rotate(180deg);
}

/* ============================================
   Options Section Styles
   ============================================ */
.options-section {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F6 100%);
  position: relative;
}

.options-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF8A65 100%);
  border-radius: 2px;
}

.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .options-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Option Cards */
.option-card {
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
}

.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF8A65 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(255, 87, 34, 0.12);
}

.option-card:hover::before {
  transform: scaleX(1);
}

/* Icon Wrapper */
.option-card__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.option-card__icon {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.option-card:hover .option-card__icon {
  transform: scale(1.1) rotate(5deg);
}

/* Title & Description */
.option-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.3;
}

.option-card__description {
  font-size: 0.875rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Price */
.option-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-value {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF5722;
  line-height: 1;
}

.price-unit {
  font-size: 0.875rem;
  color: #6B7280;
  margin-left: 0.25rem;
  font-weight: 500;
}

/* Features List */
.option-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-card__features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}

.option-card__features .feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: #FF5722;
  transition: transform 0.3s ease;
}

.option-card:hover .feature-check {
  transform: scale(1.1);
}

/* Stagger Animation */
.animate-on-scroll.stagger-1 {
  animation-delay: 0.1s;
}

.animate-on-scroll.stagger-2 {
  animation-delay: 0.2s;
}

.animate-on-scroll.stagger-3 {
  animation-delay: 0.3s;
}

.animate-on-scroll.stagger-4 {
  animation-delay: 0.4s;
}

/* Mobile responsiveness */
@media (max-width: 639px) {
  .options-section {
    padding: 3rem 1rem;
  }
  .option-card {
    padding: 1.75rem 1.25rem;
  }
  .option-card__icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
  .option-card__title {
    font-size: 1.125rem;
  }
  .price-value {
    font-size: 1.75rem;
  }
}
/* ============================================
   PORTFOLIO PAGES - Magazine Style
   ============================================ */
/* ============================================
   HERO PORTFOLIO
   ============================================ */
.portfolio-hero {
  padding: 6rem 0 4rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  top: -250px;
  left: -250px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.portfolio-hero__title {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  position: relative;
  display: inline-block;
}

.portfolio-hero__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 8rem 0 5rem;
  }
  .portfolio-hero__title {
    font-size: 3.5rem;
  }
  .portfolio-hero__subtitle {
    font-size: 1.25rem;
  }
}
/* ============================================
   PORTFOLIO CONTENT
   ============================================ */
.portfolio-content {
  padding: 4rem 0 6rem;
  background: #F8F9FA;
}

@media (min-width: 768px) {
  .portfolio-content {
    padding: 6rem 0 8rem;
  }
}
/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
/* ============================================
   PORTFOLIO CARD
   ============================================ */
.portfolio-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Portfolio Card Image */
.portfolio-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.1);
}

.portfolio-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%);
  color: white;
}

/* Overlay on hover */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 87, 34, 0.95);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.portfolio-card__overlay-link:hover {
  background: #FF5722;
  gap: 1rem;
}

/* Portfolio Card Content */
.portfolio-card__content {
  padding: 2rem;
}

.portfolio-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.portfolio-card__title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.25s ease;
}

.portfolio-card__title a:hover {
  color: #FF5722;
}

.portfolio-card__description {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Technologies */
.portfolio-card__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF5722;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.portfolio-tech-badge:hover {
  background: rgba(255, 87, 34, 0.15);
}

.portfolio-tech-badge--more {
  color: #666;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Portfolio Card Footer */
.portfolio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.portfolio-card__external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: all 0.25s ease;
}

.portfolio-card__external-link:hover {
  color: #FF5722;
  gap: 0.75rem;
}

.portfolio-card__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF5722;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.portfolio-card__detail-link:hover {
  gap: 0.75rem;
}

/* ============================================
   PORTFOLIO EMPTY STATE
   ============================================ */
.portfolio-empty {
  text-align: center;
  padding: 6rem 2rem;
  background: white;
  border-radius: 1.5rem;
}

.portfolio-empty__icon {
  font-size: 6rem;
  margin-bottom: 2rem;
}

.portfolio-empty__title {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.portfolio-empty__text {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  color: #666;
}

/* ============================================
   PROJECT DETAIL PAGE - HERO
   ============================================ */
.project-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1A1A1A;
  padding: 6rem 0 4rem;
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.project-hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.project-hero__title {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 1.5rem 0 2rem;
}

.project-hero__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tech-badge-light {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.project-hero__external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: rgba(255, 87, 34, 0.95);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-hero__external-link:hover {
  background: #FF5722;
  gap: 1rem;
}

@media (min-width: 768px) {
  .project-hero {
    min-height: 70vh;
    padding: 8rem 0 5rem;
  }
  .project-hero__title {
    font-size: 4rem;
  }
}
/* ============================================
   PROJECT CONTENT
   ============================================ */
.project-content {
  padding: 5rem 0;
  background: white;
}

.project-body {
  max-width: 900px;
  margin: 0 auto;
}

.project-lead {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 4rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .project-content {
    padding: 6rem 0;
  }
  .project-lead {
    font-size: 1.625rem;
  }
}
/* ============================================
   PROJECT SECTIONS
   ============================================ */
.project-section {
  margin-bottom: 4rem;
  padding: 3rem;
  background: #F8F9FA;
  border-radius: 1.5rem;
}

.project-section--highlight {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 112, 67, 0.05) 100%);
  border: 2px solid rgba(255, 87, 34, 0.15);
}

.project-section__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.project-section__number {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 87, 34, 0.2);
  line-height: 1;
}

.project-section__title {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
}

.project-section__content {
  font-family: "Manrope", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
}

.project-section__content p {
  margin-bottom: 1.5rem;
}

.project-section__content ul,
.project-section__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.project-section__content li {
  margin-bottom: 0.75rem;
}

.project-section__content strong {
  font-weight: 600;
  color: #1A1A1A;
}

@media (min-width: 768px) {
  .project-section {
    padding: 4rem;
  }
  .project-section__title {
    font-size: 2.25rem;
  }
  .project-section__content {
    font-size: 1.125rem;
  }
}
/* ============================================
   PROJECT META
   ============================================ */
.project-meta {
  margin-top: 5rem;
  padding: 3rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 1.5rem;
}

.project-meta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .project-meta__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .project-meta__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-meta__label {
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.project-meta__value {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  font-weight: 500;
}

.project-meta__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF5722;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 9999px;
}

.project-meta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FF5722;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.25s ease;
}

.project-meta__link:hover {
  gap: 0.75rem;
}

/* ============================================
   PROJECT BACK LINK
   ============================================ */
.project-back {
  margin-top: 4rem;
  text-align: center;
}

.project-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}

.project-back__link:hover {
  color: #FF5722;
  border-color: #FF5722;
  gap: 1rem;
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll:nth-child(2) {
  animation-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  animation-delay: 0.2s;
}

/* =============================================================================
   Hero Section - Profile Introduction
   ============================================================================= */
.about-hero {
  padding: 6rem 0 5rem;
  background: white;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero__text .badge {
  margin-bottom: 1.5rem;
}

.about-hero__title {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
}
.about-hero__title .accent-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}

.about-hero__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FF5722;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.about-hero__intro {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
}

/* Photo Frame */
.about-hero__photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero__photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #F8F9FA;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.about-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
}

.about-hero__photo-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 280px;
  height: 280px;
  border-radius: 1.5rem;
  border: 3px solid #FF5722;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

/* =============================================================================
   About Sections - Common Styles
   ============================================================================= */
.about-section {
  padding: 5rem 0;
  position: relative;
}
.about-section--story {
  background: #FFF9F6;
}
.about-section--values {
  background: white;
}
.about-section--skills {
  background: #F8F9FA;
}
.about-section--zone {
  background: white;
}

.about-section__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-section__number {
  font-family: "Sora", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 87, 34, 0.15);
  line-height: 1;
  flex-shrink: 0;
}

.about-section__title {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-top: 0.5rem;
}
.about-section__title .text-accent {
  color: #FF5722;
}

/* =============================================================================
   Story Section - Two Column Narrative
   ============================================================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
}

.about-story__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-story__text {
  font-family: "Manrope", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4B5563;
}
.about-story__text strong {
  color: #1A1A1A;
  font-weight: 600;
}

/* =============================================================================
   Values Section - Cards Grid
   ============================================================================= */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-value-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 2px solid #E5E7EB;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
}
.about-value-card:hover {
  transform: translateY(-6px);
  border-color: #FF5722;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.12);
}
.about-value-card:hover .about-value-card__icon {
  transform: scale(1.05);
  color: #FF5722;
}

.about-value-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #1A1A1A;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.about-value-card__icon svg {
  width: 100%;
  height: 100%;
}

.about-value-card__title {
  font-family: "Sora", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.about-value-card__description {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

/* =============================================================================
   Skills Section - Category Grid
   ============================================================================= */
.about-skills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.about-skills__category {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid #FF5722;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-skills__category-title {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}

.about-skills__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-skills__list li {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
  padding-left: 1.5rem;
  position: relative;
}
.about-skills__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #FF5722;
  border-radius: 50%;
}

/* =============================================================================
   Zone Section
   ============================================================================= */
.about-zone {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-zone__content {
  background: #FFF9F6;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  border: 2px solid rgba(255, 87, 34, 0.1);
}

.about-zone__title {
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}

.about-zone__text {
  font-family: "Manrope", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 2rem;
}

.about-zone__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-zone__list li {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.about-zone__list li svg {
  color: #FF5722;
  flex-shrink: 0;
}

.about-zone__note {
  font-family: "Manrope", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6B7280;
  font-style: italic;
  margin: 0;
}

/* =============================================================================
   Animations
   ============================================================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1), transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

/* =============================================================================
   Responsive Design - Tablet (768px+)
   ============================================================================= */
@media (min-width: 768px) {
  .about-hero {
    padding: 7rem 0 6rem;
  }
  .about-hero__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
  }
  .about-hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .about-hero__title .accent-underline {
    width: 160px;
    height: 5px;
  }
  .about-hero__subtitle {
    font-size: 1.5rem;
  }
  .about-hero__intro {
    font-size: 1.25rem;
  }
  .about-hero__photo-frame {
    width: 320px;
    height: 320px;
  }
  .about-hero__photo-decoration {
    width: 320px;
    height: 320px;
    top: -30px;
    right: -30px;
  }
  .about-section {
    padding: 6rem 0;
  }
  .about-section__header {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .about-section__number {
    font-size: 4rem;
  }
  .about-section__title {
    font-size: 2.5rem;
  }
  .about-story {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .about-story__text {
    font-size: 1.125rem;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .about-skills {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .about-zone__content {
    padding: 4rem 3.5rem;
  }
}
/* =============================================================================
   Responsive Design - Desktop (1024px+)
   ============================================================================= */
@media (min-width: 1024px) {
  .about-hero {
    padding: 8rem 0 7rem;
  }
  .about-hero::before {
    width: 800px;
    height: 800px;
  }
  .about-hero__content {
    grid-template-columns: 1.3fr 1fr;
    gap: 6rem;
  }
  .about-hero__title {
    font-size: 4rem;
  }
  .about-hero__title .accent-underline {
    width: 200px;
  }
  .about-hero__photo-frame {
    width: 360px;
    height: 360px;
    border-radius: 2rem;
  }
  .about-hero__photo-decoration {
    width: 360px;
    height: 360px;
    border-radius: 2rem;
  }
  .about-section {
    padding: 8rem 0;
  }
  .about-values {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .about-value-card {
    padding: 3rem;
  }
}
/* =============================================================================
   Responsive Design - Mobile (< 640px)
   ============================================================================= */
@media (max-width: 640px) {
  .about-hero {
    padding: 4rem 0 3rem;
  }
  .about-hero__title {
    font-size: 2rem;
  }
  .about-hero__subtitle {
    font-size: 1.125rem;
  }
  .about-hero__intro {
    font-size: 1rem;
  }
  .about-hero__photo-frame {
    width: 240px;
    height: 240px;
  }
  .about-hero__photo-decoration {
    width: 240px;
    height: 240px;
    top: -15px;
    right: -15px;
  }
  .about-section {
    padding: 3rem 0;
  }
  .about-section__header {
    margin-bottom: 2rem;
  }
  .about-section__number {
    font-size: 2.5rem;
  }
  .about-section__title {
    font-size: 1.75rem;
  }
  .about-value-card {
    padding: 2rem;
  }
  .about-value-card__title {
    font-size: 1.25rem;
  }
  .about-skills__category {
    padding: 1.5rem;
  }
  .about-zone__content {
    padding: 2rem 1.5rem;
  }
  .about-zone__title {
    font-size: 1.5rem;
  }
}
/* =============================================================================
   Hero Section
   ============================================================================= */
.legal-hero {
  padding: 5rem 0 3rem;
  background: #FFF9F6;
  position: relative;
}
.legal-hero .container {
  max-width: 800px;
}
.legal-hero .breadcrumb-nav {
  margin-bottom: 1.5rem;
}
.legal-hero .badge {
  margin-bottom: 1.5rem;
}

.legal-hero__title {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 1rem;
  position: relative;
}
.legal-hero__title .accent-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #FF5722 0%, #FF6B3D 100%);
  border-radius: 2px;
}

.legal-hero__subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 1rem;
  max-width: 600px;
}

.legal-hero__date {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #9CA3AF;
  font-style: italic;
  margin: 0;
}

/* =============================================================================
   Content Section
   ============================================================================= */
.legal-content {
  padding: 4rem 0 5rem;
  background: white;
}
.legal-content .container {
  max-width: 800px;
}

.legal-prose {
  font-family: "Manrope", sans-serif;
  color: #4B5563;
  line-height: 1.8;
}
.legal-prose h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #FF5722;
}
.legal-prose h2:first-child {
  margin-top: 0;
}
.legal-prose h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-prose p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.legal-prose p:last-child {
  margin-bottom: 0;
}
.legal-prose strong {
  color: #1A1A1A;
  font-weight: 600;
}
.legal-prose a {
  color: #FF5722;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.legal-prose a:hover {
  color: #E64A19;
  text-decoration: underline;
}
.legal-prose ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.legal-prose ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.8;
}
.legal-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #FF5722;
  border-radius: 50%;
}
.legal-prose ul li strong {
  display: inline;
}
.legal-prose ul li em {
  display: block;
  font-size: 0.875rem;
  color: #6B7280;
  font-style: italic;
  margin-top: 0.25rem;
  margin-left: 0;
}
.legal-prose ul li br + em {
  margin-left: 0;
}

.legal-section {
  margin-bottom: 3rem;
}
.legal-section:last-child {
  margin-bottom: 0;
}

/* =============================================================================
   Highlight Boxes
   ============================================================================= */
.info-box {
  background: #F8F9FA;
  border-left: 4px solid #FF5722;
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin: 1.5rem 0;
}
.info-box p {
  margin-bottom: 0.75rem;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.7;
}
.info-box p:last-child {
  margin-bottom: 0;
}
.info-box p strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}

.highlight-box {
  background: #FFF3E0;
  border-left: 4px solid #FF5722;
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin: 1.5rem 0;
}
.highlight-box p {
  margin-bottom: 0;
  color: #1A1A1A;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
}
.highlight-box p strong {
  font-weight: 600;
}
.highlight-box a {
  color: #FF5722;
  font-weight: 600;
}

/* =============================================================================
   Contact Box (CTA)
   ============================================================================= */
.contact-box {
  background: #FFF9F6;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3rem;
  border: 2px solid rgba(255, 87, 34, 0.1);
}
.contact-box h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 0;
  margin-bottom: 1rem;
}
.contact-box p {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}
.contact-box p:last-child {
  margin-bottom: 0;
}
.contact-box .btn {
  margin-top: 0.5rem;
}

/* =============================================================================
   Responsive Design - Tablet (768px+)
   ============================================================================= */
@media (min-width: 768px) {
  .legal-hero {
    padding: 6rem 0 4rem;
  }
  .legal-hero__title {
    font-size: 3rem;
  }
  .legal-hero__title .accent-underline {
    width: 150px;
    height: 5px;
  }
  .legal-hero__subtitle {
    font-size: 1.25rem;
  }
  .legal-content {
    padding: 5rem 0 6rem;
  }
  .legal-prose h2 {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .legal-prose h3 {
    font-size: 1.375rem;
  }
  .legal-prose p {
    font-size: 1.0625rem;
  }
  .legal-prose ul li {
    font-size: 1.0625rem;
  }
  .info-box,
  .highlight-box {
    padding: 2rem;
  }
  .contact-box {
    padding: 3.5rem 3rem;
  }
}
/* =============================================================================
   Responsive Design - Desktop (1024px+)
   ============================================================================= */
@media (min-width: 1024px) {
  .legal-hero {
    padding: 7rem 0 5rem;
  }
  .legal-hero__title {
    font-size: 3.5rem;
  }
  .legal-hero__title .accent-underline {
    width: 180px;
  }
  .legal-content {
    padding: 6rem 0 8rem;
  }
  .contact-box {
    padding: 4rem 4rem;
  }
}
/* =============================================================================
   Responsive Design - Mobile (< 640px)
   ============================================================================= */
@media (max-width: 640px) {
  .legal-hero {
    padding: 4rem 0 2.5rem;
  }
  .legal-hero__title {
    font-size: 2rem;
  }
  .legal-hero__title .accent-underline {
    width: 100px;
  }
  .legal-hero__subtitle {
    font-size: 1rem;
  }
  .legal-content {
    padding: 3rem 0 4rem;
  }
  .legal-prose h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  .legal-prose h3 {
    font-size: 1.125rem;
    margin-top: 1.75rem;
  }
  .legal-prose p {
    font-size: 0.9375rem;
  }
  .legal-prose ul li {
    font-size: 0.9375rem;
    padding-left: 1.5rem;
  }
  .info-box,
  .highlight-box {
    padding: 1.5rem;
    margin: 1.25rem 0;
  }
  .contact-box {
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
  }
  .contact-box h3 {
    font-size: 1.25rem;
  }
  .contact-box p {
    font-size: 0.9375rem;
  }
}
/* =============================================================================
   Print Styles
   ============================================================================= */
@media print {
  .legal-hero {
    background: white;
    padding: 2rem 0 1rem;
  }
  .legal-hero__title .accent-underline {
    display: none;
  }
  .legal-content {
    padding: 1rem 0;
  }
  .contact-box {
    display: none;
  }
  .breadcrumb-nav {
    display: none;
  }
  .badge {
    border: 1px solid #1A1A1A;
    color: #1A1A1A;
  }
  a {
    color: #1A1A1A;
    text-decoration: underline;
  }
}
.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #FF5722 !important;
}

.text-black {
  color: #1A1A1A !important;
}

.text-gray {
  color: #4B5563 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

@media (min-width: 640px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.bg-white {
  background-color: #FFFFFF !important;
}

.bg-gray {
  background-color: #F9FAFB !important;
}

.bg-cream {
  background-color: #FFF5F0 !important;
}

.bg-black {
  background-color: #1A1A1A !important;
}

.bg-primary {
  background-color: #FF5722 !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #FF5722 0%, #FF7043 100%) !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.75rem !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.w-full {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1), transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.js-email,
.js-email-click {
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.js-email.loaded,
.js-email-click.loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js-email,
  .js-email-click {
    transition: none;
  }
}
@keyframes emailFallbackReveal {
  to {
    opacity: 1;
  }
}
.js-email,
.js-email-click {
  animation: emailFallbackReveal 0.3s ease-in 1s forwards;
}

.js-email.loaded,
.js-email-click.loaded {
  animation: none;
}

/*# sourceMappingURL=app.output.css.map */
