/* [project]/style/main.scss.css [app-client] (css) */
html, body {
  font-family: Arial, Helvetica, sans-serif;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-slide-left {
  animation: .6s ease-out forwards slideInFromLeft;
}

.animate-slide-right {
  animation: .6s ease-out forwards slideInFromRight;
}

.animate-slide-up {
  animation: .6s ease-out forwards slideInFromBottom;
}

.animate-fade-in {
  animation: .6s ease-out forwards fadeIn;
}

.animate-scale-in {
  animation: .6s ease-out forwards scaleIn;
}

.animate-delay-100 {
  animation-delay: .1s;
}

.animate-delay-200 {
  animation-delay: .2s;
}

.animate-delay-300 {
  animation-delay: .3s;
}

.animate-delay-400 {
  animation-delay: .4s;
}

.animate-delay-500 {
  animation-delay: .5s;
}

.animate-on-scroll {
  opacity: 0;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
}

*, :before, :after {
  box-sizing: border-box;
}

body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.pageWrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.siteMain {
  flex: 1;
  width: 100%;
}

.header {
  z-index: 1000;
  background: linear-gradient(to right, #fb923c 0%, #fff 20%);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  transition: box-shadow .3s;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 4px #1018280f;
}

.header.scrolled {
  box-shadow: 0 4px 12px #1018281f;
}

.logo {
  align-items: center;
  gap: .75rem;
  height: 60px;
  display: flex;
}

.logoImage {
  object-fit: contain;
  width: 115px;
  height: 115px;
}

.logoText {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
}

.nav {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.navLink {
  color: #374151;
  padding: .5rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}

.navLink:after {
  content: "";
  background: linear-gradient(90deg, #fb923c, #f97316);
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navLink:hover {
  color: #f97316;
}

.navLink:hover:after {
  width: 100%;
}

.ctas {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.btn {
  --btn-height: 40px;
  height: var(--btn-height);
  color: #374151;
  box-sizing: border-box;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  padding: 0 .9rem;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
}

.btn:hover {
  color: #111827;
  border-color: #9ca3af;
}

.btnPrimary {
  height: var(--btn-height);
  color: #fff;
  background: #fb923c;
  border-color: #0000;
}

.btnPrimary:hover {
  background: #f97316;
}

.btnIcon {
  height: var(--btn-height);
  width: var(--btn-height);
  color: #374151;
  box-sizing: border-box;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  display: inline-flex;
}

.icon {
  width: 20px;
  height: 20px;
  color: inherit;
  flex-shrink: 0;
  display: block;
}

.mobileMenuBtn {
  color: #374151;
  cursor: pointer;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: none;
}

.mobileMenuBtn svg {
  width: 24px;
  height: 24px;
}

.mobileMenuBtn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.mobileMenu {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 16px #0000001a;
}

.mobileNav {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.mobileNavLink {
  color: #374151;
  border-radius: .375rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}

.mobileNavLink:hover {
  color: #111827;
  background: #f9fafb;
}

.mobileCtas {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
  }

  .nav {
    gap: 1rem;
  }

  .navLink {
    font-size: .875rem;
  }
}

@media (max-width: 768px) {
  .navDesktop, .ctasDesktop {
    display: none;
  }

  .mobileMenuBtn {
    display: flex;
  }

  .mobileMenu {
    display: block;
  }

  .logoText {
    font-size: 1rem;
  }

  .logoImage {
    width: 40px;
    height: 40px;
  }
}

.heroTitle {
  color: #0f172ae6;
  margin: 0 0 .25rem;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.03;
}

.heroKicker {
  color: #0f172ad9;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: 1.125rem;
  display: flex;
}

.heroKickerText {
  line-height: 1.2;
}

.heroEm {
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
}

.heroSubtitle {
  color: #6b7280;
  margin-top: .75rem;
  font-size: 1.0625rem;
}

.heroDesc {
  color: #475569;
  margin-top: .75rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.heroDesc p {
  margin: .5rem 0;
}

.heroCtaHint a {
  color: #0f172a;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
}

.heroCTA {
  color: #000;
  height: var(--btn-height, 44px);
  letter-spacing: .02em;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: 0 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 6px 16px #0f172a14;
}

.features .card {
  text-align: left;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 4px #1018280a;
}

.landingCta h2 {
  margin: 0;
  font-size: 1.25rem;
}

@media (max-width: 1024px) {
  .heroTitle {
    font-size: 2.5rem;
  }

  .heroDesc, .heroKicker {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .heroTitle {
    font-size: 2rem;
    line-height: 1.1;
  }

  .heroKicker {
    gap: .5rem;
    font-size: .95rem;
  }

  .heroDesc {
    font-size: .95rem;
  }

  .heroSubtitle {
    font-size: 1rem;
  }

  .heroCTA {
    height: 42px;
    padding: 0 1rem;
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .heroTitle {
    font-size: 1.75rem;
  }

  .heroKicker, .heroDesc {
    font-size: .875rem;
  }

  .heroCTA {
    width: 100%;
    font-size: .9rem;
  }
}

.heroSection {
  background: linear-gradient(#f8fafc, #fff);
  width: 100%;
}

.heroInner {
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 6rem 3rem;
  display: flex;
}

.heroMedia {
  flex: 0 0 50%;
  min-height: 560px;
  display: block;
  position: relative;
  overflow: visible;
}

.heroImage {
  background-color: #e6eef8;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  min-height: 140px;
  box-shadow: 0 6px 18px #0f172a0f;
}

.heroImage.small {
  min-height: 100px;
}

.stackImage {
  object-fit: cover;
  transform-origin: center;
  pointer-events: none;
  border-radius: 12px;
  width: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 36px #0f172a1f;
}

.role-front {
  z-index: 3;
  opacity: 1;
  width: 340px;
  transform: translate(-50%, -50%)translateX(0)translateY(250px)scale(1.18);
  box-shadow: 0 22px 48px #0f172a38;
}

.role-left {
  z-index: 1;
  opacity: .97;
  width: 340px;
  transform: translate(-50%, -50%)translateX(-280px)translateY(280px)scale(1.12);
  box-shadow: 0 18px 40px #0f172a29;
}

.role-right {
  z-index: 2;
  opacity: .92;
  width: 260px;
  transform: translate(-50%, -50%)translateX(280px)translateY(290px)scale(1.02);
  box-shadow: 0 14px 32px #0f172a1f;
}

.front-to-left {
  z-index: 3;
  opacity: 1;
  width: 300px;
  transform: translate(-50%, -50%)translateX(-80px)translateY(2px)scale(1.12);
  box-shadow: 0 18px 40px #0f172a29;
}

.heroContent {
  flex-direction: column;
  flex: 0 0 50%;
  justify-content: center;
  max-width: 45%;
  padding-left: 2.5rem;
  display: flex;
}

.heroSubtitle {
  color: #6b7280;
  margin-top: .5rem;
}

@media (min-width: 1650px) {
  .heroInner {
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
  }

  .heroContent {
    max-width: 42%;
    padding-left: 4rem;
  }
}

@media (max-width: 1625px) {
  .stackImage {
    left: 70%;
  }

  .role-right {
    display: none;
  }
}

@media (max-width: 1024px) {
  .heroInner {
    gap: 1.5rem;
    padding: 4rem 2rem;
  }

  .heroMedia {
    min-height: 450px;
  }

  .stackImage {
    left: 65%;
  }

  .role-front {
    width: 280px;
    transform: translate(-50%, -50%)translateX(0)translateY(200px)scale(1.15);
  }

  .role-left {
    width: 280px;
    transform: translate(-50%, -50%)translateX(-220px)translateY(230px)scale(1.1);
  }

  .role-right {
    width: 220px;
    transform: translate(-50%, -50%)translateX(220px)translateY(240px)scale(1);
  }

  .heroContent {
    max-width: 45vw;
    padding-left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .heroInner {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4em;
    padding: 3rem 1.5rem;
  }

  .heroMedia {
    flex: none;
    width: 100%;
    min-height: 300px;
    margin-bottom: 1rem;
  }

  .stackImage {
    width: 240px;
    top: 50%;
    left: 60%;
  }

  .role-front {
    width: 260px;
    transform: translate(-50%, -50%)translateX(0)translateY(110px)scale(1.08);
  }

  .role-left {
    width: 220px;
    transform: translate(-50%, -50%)translateX(-110px)translateY(130px)scale(1);
  }

  .role-right {
    width: 200px;
    transform: translate(-50%, -50%)translateX(110px)translateY(140px)scale(.95);
  }

  .heroContent {
    flex: auto;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .heroInner {
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .heroMedia {
    min-height: 250px;
  }

  .stackImage {
    width: 180px;
    left: 60%;
  }

  .role-front {
    width: 200px;
    transform: translate(-50%, -50%)translateX(0)translateY(100px)scale(1.05);
  }

  .role-left {
    opacity: .9;
    width: 170px;
    transform: translate(-50%, -50%)translateX(-80px)translateY(115px)scale(1);
  }

  .role-right {
    opacity: .85;
    width: 150px;
    transform: translate(-50%, -50%)translateX(80px)translateY(125px)scale(.92);
  }
}

.servicesSection {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  padding: 5rem 2rem;
}

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

.servicesHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
  display: flex;
}

.servicesHeader__content {
  flex: 1;
  max-width: 700px;
}

.servicesHeader__kicker {
  color: #f97316;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
}

.servicesHeader__kicker svg {
  flex-shrink: 0;
}

.servicesHeader__title {
  color: #0f172a;
  margin: 0 0 1rem;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.servicesHeader__lead {
  color: #475569;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.servicesHeader__action {
  align-items: flex-start;
  padding-top: 2.5rem;
  display: flex;
}

.servicesGrid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-items: center;
  gap: 2rem;
  display: grid;
}

.servicesSection--single .servicesGrid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.servicesSection--single .serviceCard {
  text-align: center;
  align-items: center;
  max-width: 680px;
}

.servicesSection--single .serviceCard__header {
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.servicesSection--single .serviceCard__icon {
  border-radius: 16px;
  width: 84px;
  height: 84px;
}

.servicesSection--single .serviceCard__icon svg {
  width: 40px;
  height: 40px;
}

.servicesSection--single .serviceCard__badge {
  color: #334155;
  background: #eef2ff;
  margin-top: .25rem;
  font-size: .875rem;
}

.servicesSection--single .serviceCard__list {
  column-count: 2;
  column-gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.servicesSection--single .serviceCard__list li {
  padding: .35rem 0;
  display: block;
}

.servicesSection--single .serviceCard__link {
  color: #fff;
  background: linear-gradient(90deg, #fb923c, #f97316);
  border-radius: 10px;
  align-items: center;
  gap: .5rem;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  text-decoration: none;
  display: inline-flex;
}

.serviceCard {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 720px;
  padding: 2.5rem;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px #0f172a0f;
}

.serviceCard:before {
  content: "";
  transform-origin: 0;
  background: linear-gradient(90deg, #fb923c, #f97316);
  height: 4px;
  transition: transform .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.serviceCard:hover:before {
  transform: scaleX(1);
}

.serviceCard:hover .serviceCard__icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
  transform: scale(1.05);
}

.serviceCard:hover .serviceCard__link {
  color: #f97316;
}

.serviceCard:hover .serviceCard__link svg {
  transform: translateX(4px);
}

.serviceCard__header {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  display: flex;
}

.serviceCard__icon {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  transition: all .3s;
  display: flex;
}

.serviceCard__icon svg {
  stroke: #fff;
}

.serviceCard__badge {
  color: #64748b;
  white-space: nowrap;
  background: #f1f5f9;
  border-radius: 6px;
  padding: .375rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
}

.serviceCard__title {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}

.serviceCard__list {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.serviceCard__list li {
  color: #475569;
  align-items: flex-start;
  gap: .625rem;
  padding: .5rem 0;
  font-size: .9375rem;
  line-height: 1.5;
  display: flex;
}

.serviceCard__list li svg {
  stroke: #fb923c;
  flex-shrink: 0;
  margin-top: .125rem;
}

.serviceCard__list li span {
  flex: 1;
}

.serviceCard__link {
  color: #fb923c;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.serviceCard__link svg {
  flex-shrink: 0;
  transition: transform .2s;
}

.serviceCard__link:hover {
  gap: .75rem;
}

@media (max-width: 1024px) {
  .servicesSection {
    padding: 4rem 1.5rem;
  }

  .servicesHeader {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .servicesHeader__title {
    font-size: 2.25rem;
  }

  .servicesHeader__action {
    padding-top: 0;
  }

  .servicesGrid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .servicesSection {
    padding: 3rem 1.5rem;
  }

  .servicesHeader {
    margin-bottom: 2.5rem;
  }

  .servicesHeader__title {
    font-size: 2rem;
  }

  .servicesHeader__lead {
    font-size: 1.0625rem;
  }

  .servicesHeader__action {
    width: 100%;
  }

  .servicesHeader__action .btn {
    justify-content: center;
    width: 100%;
  }

  .servicesGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .serviceCard {
    padding: 2rem;
  }

  .serviceCard__icon {
    width: 56px;
    height: 56px;
  }

  .serviceCard__icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .servicesSection {
    padding: 2.5rem 1rem;
  }

  .servicesHeader__title {
    font-size: 1.75rem;
  }

  .serviceCard {
    padding: 1.75rem;
  }

  .serviceCard__title {
    font-size: 1.25rem;
  }

  .serviceCard__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .serviceCard__badge {
    align-self: flex-start;
  }
}

.servicesPage {
  background: linear-gradient(#fff, #fbfbfd);
  width: 100%;
  padding: 4rem 0 0;
}

.servicesPage__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.servicesPage__header {
  text-align: center;
  margin-bottom: 2rem;
}

.servicesPage__header h1 {
  margin: 0 0 .5rem;
  font-size: 2.5rem;
}

.servicesPage__header p {
  color: #475569;
  margin: 0;
}

.servicesPage__heroGrid {
  align-items: center;
  gap: 2rem;
  width: 100vw;
  margin-bottom: 2rem;
  margin-left: calc(50% - 50vw);
  padding: 2rem 1rem;
  display: flex;
}

.servicesPage__heroMedia {
  flex-direction: row;
  flex: 0 0 50%;
  align-items: center;
  gap: 1rem;
  display: flex;
  position: relative;
  overflow: visible;
}

.servicesPage__heroImageTop {
  object-fit: contain;
  width: 44%;
  max-width: 360px;
  height: auto;
  max-height: 360px;
  box-shadow: none;
  z-index: 3;
  background: none;
  border-radius: 12px;
  align-self: center;
  padding: 0;
  transition: transform .22s;
  display: block;
  transform: translateX(80px);
}

.servicesPage__heroImageBottom {
  object-fit: cover;
  z-index: 1;
  border-radius: 10px;
  align-self: center;
  width: 52%;
  max-width: 640px;
  height: 360px;
  transition: transform .22s;
  transform: translateY(36px)translateX(-28px);
  box-shadow: 0 18px 40px #0f172a1f;
}

.servicesPage__heroText {
  flex: 50%;
}

.servicesPage__heroSubtitle {
  color: #0f172a;
  letter-spacing: -.02em;
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
}

.servicesPage__heroActions {
  margin-top: 1.25rem;
}

.servicesPage__heroKicker {
  color: #fff;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-weight: 600;
  display: flex;
}

.servicesPage__checkIcon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.servicesPage__heroLead {
  color: #475569;
  margin-top: .75rem;
  line-height: 1.5;
}

.servicesPage__partner {
  color: #374151;
  font-size: 1.05rem;
  font-weight: 500;
}

.servicesPage__heroHeadline {
  margin: .25rem 0 .5rem;
  display: block;
}

.servicesPage__heroHeadlineTop {
  color: #111827;
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.02;
  display: block;
}

.servicesPage__heroHeadlineBold {
  color: #111827;
  margin-top: .25rem;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: .98;
  display: block;
}

.servicesPage__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  display: grid;
}

.servicesPage__card {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px #0f172a0f;
}

.servicesPage__card h3 {
  margin: 0 0 .5rem;
}

.servicesPage__card p {
  color: #475569;
  margin: 0;
}

.servicesPage__cta {
  justify-content: center;
  margin-top: 2rem;
  display: flex;
}

.servicesFooter {
  background: #fed7aa;
  width: 100vw;
  margin-top: 3rem;
  margin-bottom: 0;
  margin-left: calc(50% - 50vw);
  padding: 3rem 0 2rem;
  box-shadow: inset 0 1px #ffffff59;
}

.servicesFooter__inner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}

.servicesFooter__text {
  flex: 1 1 0;
}

.servicesFooter__title {
  color: #0f172a;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.servicesFooter__lead {
  color: #475569;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.servicesFooter__actions {
  margin-top: 1.25rem;
}

.servicesFooter__title {
  margin-bottom: .6rem;
  font-size: 2rem;
  line-height: 1.05;
}

.servicesFooter__media {
  flex: 0 0 420px;
  justify-content: center;
  display: flex;
}

.servicesFooter__img {
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  height: auto;
  box-shadow: 0 12px 30px #0f172a0f;
}

.servicesFooter__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.servicesFooter__item {
  color: #475569;
  padding-left: 1.6rem;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
}

.servicesFooter__item:before {
  content: "✓";
  color: #f97316;
  font-weight: 700;
  position: absolute;
  top: .1rem;
  left: 0;
}

.servicesFooter__itemTitle {
  color: #0f172a;
  margin-bottom: .15rem;
  font-weight: 700;
  display: block;
}

.servicesFooter__itemDesc {
  color: #475569;
  font-size: .95rem;
  display: block;
}

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

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

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

  .servicesPage__header h1 {
    font-size: 1.75rem;
  }

  .servicesPage__heroGrid {
    flex-direction: column;
  }

  .servicesPage__heroMedia {
    flex-direction: column;
    width: 100%;
  }

  .servicesPage__heroImageTop {
    max-width: 100%;
    height: 180px;
  }

  .servicesPage__heroImageBottom {
    max-width: 100%;
    height: 180px;
    transform: translateY(0)translateX(0);
  }

  .servicesPage__heroSubtitle {
    font-size: 1.4rem;
  }

  .servicesPage__heroHeadlineTop {
    font-size: 1.6rem;
  }

  .servicesPage__heroHeadlineBold {
    font-size: 2.1rem;
  }

  .servicesPage__heroImageTop {
    z-index: auto;
    transform: none;
  }

  .servicesFooter {
    margin-top: 2rem;
  }

  .servicesFooter__inner {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  .servicesFooter__media {
    flex: none;
  }

  .servicesFooter__img {
    max-width: 320px;
  }
}

.serviceTabs {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.serviceTabs__header {
  text-align: center;
  margin-bottom: 3rem;
}

.serviceTabs__headerTitle {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.serviceTabs__headerSubtitle {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.serviceTabs__list {
  background: #f8fafc;
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  display: flex;
  box-shadow: inset 0 2px 8px #0f172a0a;
}

.serviceTabs__tab {
  cursor: pointer;
  color: #334155;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.serviceTabs__tab:hover:not(.is-active) {
  background: #fffbf7;
  border-color: #fed7aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #fb923c1a;
}

.serviceTabs__tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-color: #0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #fb923c4d;
}

.serviceTabs__tab.is-active .serviceTabs__tabIcon svg {
  stroke: #fff;
}

.serviceTabs__tabIcon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.serviceTabs__tabIcon svg {
  stroke: #f97316;
  transition: stroke .3s;
}

.serviceTabs__tabText {
  white-space: nowrap;
}

.serviceTabs__content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px #0f172a14;
}

.serviceTabs__panel {
  padding: 3rem 2.5rem;
  animation: .4s ease-in-out fadeIn;
}

.serviceTabs__panelHeader {
  border-bottom: 2px solid #f1f5f9;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.serviceTabs__panelIcon {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.serviceTabs__panelIcon svg {
  stroke: #fff;
  stroke-width: 2px;
  width: 28px;
  height: 28px;
}

.serviceTabs__panelTitle {
  color: #0f172a;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.serviceTabs__intro, .serviceTabs__paragraph {
  color: #475569;
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.serviceTabs__intro {
  background: #f8fafc;
  border-left: 4px solid #fb923c;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
}

.serviceTabs__sections {
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.serviceTabs__section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
}

.serviceTabs__sectionHeader {
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.serviceTabs__sectionHeader svg {
  stroke: #f97316;
  flex-shrink: 0;
}

.serviceTabs__sectionTitle {
  color: #0f172a;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.serviceTabs__sectionText {
  color: #475569;
  margin: 0;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.serviceTabs__list--items {
  gap: .875rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.serviceTabs__listItem {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  transition: all .2s;
  display: flex;
}

.serviceTabs__listItem:hover {
  border-color: #fed7aa;
  box-shadow: 0 2px 8px #fb923c1a;
}

.serviceTabs__listItem svg {
  stroke: #fb923c;
  flex-shrink: 0;
  margin-top: .1rem;
}

.serviceTabs__listItem span {
  color: #334155;
  font-size: .9675rem;
  line-height: 1.6;
}

.serviceTabs__list--frequency {
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.serviceTabs__frequencyItem {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  transition: all .2s;
  display: flex;
}

.serviceTabs__frequencyItem:hover {
  border-color: #fed7aa;
  transform: translateX(4px);
  box-shadow: 0 2px 8px #fb923c1a;
}

.serviceTabs__frequencyWhere {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
}

.serviceTabs__frequencyInterval {
  color: #f97316;
  white-space: nowrap;
  background: #fed7aa;
  border-radius: 6px;
  padding: .375rem .875rem;
  font-size: .95rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .serviceTabs {
    margin: 2.5rem auto;
    padding: 0 1.5rem;
  }

  .serviceTabs__headerTitle {
    font-size: 2rem;
  }

  .serviceTabs__panel {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .serviceTabs {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .serviceTabs__header {
    margin-bottom: 2rem;
  }

  .serviceTabs__headerTitle {
    font-size: 1.75rem;
  }

  .serviceTabs__headerSubtitle {
    font-size: 1rem;
  }

  .serviceTabs__list {
    flex-direction: column;
    gap: .75rem;
    padding: 1rem;
  }

  .serviceTabs__tab {
    justify-content: center;
    width: 100%;
    padding: .875rem 1.25rem;
  }

  .serviceTabs__panel {
    padding: 2rem 1.5rem;
  }

  .serviceTabs__panelHeader {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .serviceTabs__panelIcon {
    width: 48px;
    height: 48px;
  }

  .serviceTabs__panelIcon svg {
    width: 24px;
    height: 24px;
  }

  .serviceTabs__panelTitle {
    font-size: 1.5rem;
  }

  .serviceTabs__section {
    padding: 1.5rem;
  }

  .serviceTabs__sectionText {
    padding-left: 0;
  }

  .serviceTabs__frequencyItem {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .serviceTabs__frequencyInterval {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .serviceTabs {
    margin: 1.5rem auto;
  }

  .serviceTabs__headerTitle {
    font-size: 1.5rem;
  }

  .serviceTabs__panel {
    padding: 1.5rem 1rem;
  }

  .serviceTabs__panelTitle {
    font-size: 1.25rem;
  }

  .serviceTabs__intro, .serviceTabs__paragraph {
    font-size: 1rem;
  }

  .serviceTabs__section {
    padding: 1.25rem;
  }

  .serviceTabs__listItem {
    padding: .625rem;
  }
}

.serviceSteps {
  background: linear-gradient(#fffaf666, #0000 120px);
  width: 100%;
  padding: 3rem 0;
}

.serviceSteps__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.serviceSteps__heading {
  color: #111827;
  text-align: center;
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.serviceSteps__subtitle {
  color: #6b7280;
  text-align: center;
  margin: .5rem 0 1.25rem;
}

.serviceSteps__list {
  margin: 0;
  padding: 0 0 0 64px;
  list-style: none;
  position: relative;
}

.serviceSteps__list:before {
  content: "";
  background: linear-gradient(#ff950033, #ff95000f);
  border-radius: 2px;
  width: 3px;
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 36px;
}

.serviceSteps__item {
  background: #fff;
  border: 1px solid #0f172a0a;
  border-radius: 12px;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  position: relative;
  box-shadow: 0 12px 30px #0f172a0f;
}

.serviceSteps__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px #0f172a1f;
}

.serviceSteps__badge {
  color: #fff;
  z-index: 3;
  background: linear-gradient(#fb923c, #f97316);
  border-radius: 50%;
  flex: 0 0 56px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-left: -64px;
  font-size: 1.1rem;
  font-weight: 800;
  display: inline-flex;
  box-shadow: 0 8px 20px #ea580c1f;
}

.serviceSteps__body {
  flex: auto;
}

.serviceSteps__title {
  color: #0f172a;
  margin: 0 0 .25rem;
  font-size: 1.125rem;
}

.serviceSteps__text {
  color: #475569;
  margin: 0;
  font-size: .97rem;
  line-height: 1.5;
}

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

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

  .serviceSteps__item {
    align-items: center;
  }

  .serviceSteps__badge {
    width: 48px;
    height: 48px;
    transform: none;
  }

  .serviceSteps__item:before {
    display: none;
  }

  .serviceSteps__heading {
    font-size: 1.6rem;
  }
}

.whySection {
  background: linear-gradient(#fff, #fbfbfd);
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 3.5rem 1rem;
  display: flex;
}

.whyInner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.whyTitle {
  color: #0f172a;
  text-align: center;
  margin: 0 0 3.2rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.08;
}

.whyGrid {
  grid-template-columns: 480px 1fr;
  align-items: stretch;
  gap: 2rem;
  display: grid;
}

.whyMedia {
  display: block;
}

.whyMedia img {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 10px 22px #0f172a0f;
}

.whyContent {
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.whyContent .whyIntro p {
  color: #475569;
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.whyCta {
  margin-top: .5rem;
  display: inline-block;
}

.whyCtaWrap {
  justify-content: flex-end;
  display: flex;
}

.whyCta {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding: .65rem 1.25rem;
  font-size: 1rem;
  display: inline-flex;
}

.whyList {
  margin: 0;
  padding: .5rem 0 0;
  list-style: none;
}

.whyList li {
  background: #fff;
  border-radius: 8px;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: .85rem;
  margin-bottom: .75rem;
  padding: .9rem 1rem;
  display: grid;
  box-shadow: 0 6px 12px #0f172a09;
}

.whyList li strong {
  color: #0f172a;
  margin-bottom: .25rem;
  font-size: 1.02rem;
  display: block;
}

.whyList li {
  color: #475569;
  font-size: 1rem;
}

.whyItemText {
  flex-direction: column;
  display: flex;
}

.whyItemText span {
  color: #475569;
  margin-top: .25rem;
  font-size: 1rem;
  line-height: 1.4;
  display: block;
}

.whyCheck {
  color: #fb923c;
  will-change: transform;
  flex: 0 0 64px;
  align-self: start;
  width: 64px;
  height: 64px;
  margin-top: 0;
  display: inline-block;
  transform: translateY(-8px);
}

@media (max-width: 900px) {
  .whySection {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .whyGrid {
    grid-template-columns: 1fr;
  }

  .whyMedia {
    margin-bottom: .75rem;
  }

  .whyList li {
    margin-bottom: .5rem;
  }

  .whyTitle {
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
  }

  .whyCheck {
    flex: 0 0 40px;
    align-self: start;
    width: 40px;
    height: 40px;
    margin-top: 0;
    transform: translateY(-6px);
  }

  .whyList {
    padding-top: .25rem;
  }
}

.infoSection {
  background: linear-gradient(#fff, #fbfbfd);
  width: 100%;
  padding: 4rem 1rem;
}

.infoInner {
  max-width: 1100px;
  margin: 0 auto;
}

.infoTitle {
  color: #0f172a;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
}

.infoGrid {
  grid-template-columns: 1fr 320px;
  align-items: start;
  gap: 2rem;
  display: grid;
}

.infoText p {
  color: #334155;
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.infoList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.infoList li {
  background: #fff;
  border-radius: 10px;
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: .75rem;
  margin-bottom: .85rem;
  padding: .85rem 1rem;
  display: grid;
  box-shadow: 0 8px 20px #0f172a0a;
}

.infoList li strong {
  color: #0f172a;
  margin-bottom: .2rem;
  font-size: 1rem;
  display: block;
}

.infoList li span {
  color: #475569;
  font-size: .98rem;
  line-height: 1.5;
}

.infoSidebar .infoBox {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px #0f172a0a;
}

.infoBox h4 {
  margin: 0 0 .5rem;
  font-size: 1.02rem;
}

.infoCta {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .infoGrid, .infoList li {
    grid-template-columns: 1fr;
  }

  .infoList li strong {
    margin-bottom: .35rem;
  }

  .infoTitle {
    font-size: 1.5rem;
  }

  .infoSection {
    padding: 2rem 1rem;
  }
}

.infoSidebar {
  flex-direction: column;
  display: flex;
}

.infoSidebar .infoCta {
  justify-content: flex-end;
  margin-top: .5rem;
  display: flex;
}

@media (max-width: 900px) {
  .infoSidebar .infoCta {
    justify-content: flex-end;
  }

  .infoSidebar .infoCta .btn {
    width: auto;
  }
}

.contactSection {
  background: linear-gradient(#f0f9ff, #fff);
  width: 100%;
  padding: 3.5rem 1rem;
}

.contactInner {
  max-width: 1100px;
  margin: 0 auto;
}

.contactTitle {
  color: #0f172a;
  margin-bottom: .75rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.contactIntro {
  color: #475569;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contactForm {
  background: none;
}

.formGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: grid;
}

.formField {
  flex-direction: column;
  display: flex;
}

.formField.full {
  grid-column: 1 / -1;
}

.formField span {
  color: #0f172a;
  margin-bottom: .35rem;
  font-weight: 600;
}

.formField input, .formField textarea, .formField select {
  color: #0f172a;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: .75rem .9rem;
  font-size: 1rem;
  transition: border-color .15s, box-shadow .18s, transform .12s;
}

.formField input::placeholder, .formField textarea::placeholder {
  color: #9ca3af;
}

.formField input:focus, .formField textarea:focus, .formField select:focus {
  border-color: #fb923c;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px #fb923c0f;
}

.formField select.hasPlaceholder {
  color: #fb923c;
  font-weight: 700;
}

.formField select.hasValue {
  color: #0f172a;
  font-weight: 400;
}

.formField textarea {
  min-height: 140px;
}

.consent {
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: .75rem;
  display: flex;
}

.consent input {
  margin-top: 6px;
}

.consent span {
  color: #475569;
  font-size: .95rem;
}

.formActions {
  grid-column: 1 / -1;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  display: flex;
}

.formError {
  color: #b91c1c;
}

.fieldError {
  color: #b91c1c;
  margin-top: .25rem;
  display: block;
}

.btn {
  --btn-height: 44px;
}

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

  .formActions {
    justify-content: center;
  }
}

.aboutPage {
  background: #fff;
  width: 100%;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionHeader__title {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.sectionHeader__subtitle {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.aboutHero {
  background: linear-gradient(#f8fafc 0%, #fff 100%);
  padding: 5rem 2rem;
}

.aboutHero__inner {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

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

.aboutHero__kicker {
  color: #f97316;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.aboutHero__kicker svg {
  flex-shrink: 0;
}

.aboutHero__title {
  color: #0f172a;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.aboutHero__titleAccent {
  color: #f97316;
}

.aboutHero__lead {
  color: #475569;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.aboutHero__actions {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.aboutHero__media {
  position: relative;
}

.aboutHero__imageWrapper {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px #0000001a;
}

.aboutHero__imageWrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.aboutStats {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 4rem 2rem;
}

.aboutStats__inner {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.statCard {
  text-align: center;
  padding: 1.5rem;
}

.statCard__number {
  color: #f97316;
  margin-bottom: .5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.statCard__label {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

.aboutMission {
  background: #f8fafc;
  padding: 5rem 2rem;
}

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

.missionGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  display: grid;
}

.missionCard {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 16px #0000000f;
}

.missionCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0000001a;
}

.missionCard__icon {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
}

.missionCard__icon svg {
  color: #fff;
}

.missionCard__title {
  color: #0f172a;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.missionCard__text {
  color: #475569;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.aboutServices {
  background: #fff;
  padding: 5rem 2rem;
}

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

.servicesGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  display: grid;
}

.serviceCard {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
}

.serviceCard:hover {
  border-color: #fb923c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #fb923c26;
}

.serviceCard__icon {
  background: #fed7aa;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
}

.serviceCard__icon svg {
  color: #f97316;
}

.serviceCard__title {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.serviceCard__desc {
  color: #64748b;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.aboutTeam {
  background: #f8fafc;
  padding: 5rem 2rem;
}

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

.teamGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  display: grid;
}

.teamMember {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 16px #0000000f;
}

.teamMember:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #0000001a;
}

.teamMember__icon {
  color: #fff;
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.teamMember__icon svg {
  width: 48px;
  height: 48px;
}

.teamMember__avatar {
  border: 4px solid #fed7aa;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.teamMember__avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.teamMember__name {
  color: #0f172a;
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.teamMember__role {
  color: #f97316;
  margin: 0 0 1rem;
  font-size: .95rem;
  font-weight: 600;
}

.teamMember__desc {
  color: #64748b;
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
}

.aboutCTA {
  text-align: center;
  background: linear-gradient(135deg, #f97316, #fb923c);
  padding: 5rem 2rem;
}

.aboutCTA__inner {
  max-width: 800px;
  margin: 0 auto;
}

.aboutCTA__title {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.aboutCTA__text {
  color: #fffffff2;
  margin: 0 0 2rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.aboutCTA .btn {
  color: #f97316;
  background: #fff;
}

.aboutCTA .btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0003;
}

@media (max-width: 1024px) {
  .aboutHero {
    padding: 4rem 1.5rem;
  }

  .aboutHero__inner {
    gap: 3rem;
  }

  .aboutHero__title {
    font-size: 2.5rem;
  }

  .sectionHeader__title {
    font-size: 2rem;
  }

  .aboutStats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .teamGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .aboutHero {
    padding: 3rem 1.5rem;
  }

  .aboutHero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aboutHero__title {
    font-size: 2rem;
  }

  .aboutHero__lead {
    font-size: 1.125rem;
  }

  .aboutHero__media {
    order: -1;
  }

  .sectionHeader {
    margin-bottom: 2rem;
  }

  .sectionHeader__title {
    font-size: 1.75rem;
  }

  .sectionHeader__subtitle {
    font-size: 1rem;
  }

  .aboutStats {
    padding: 3rem 1.5rem;
  }

  .aboutStats__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .statCard__number {
    font-size: 2.5rem;
  }

  .missionGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .missionCard {
    padding: 2rem;
  }

  .servicesGrid, .teamGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .aboutCTA {
    padding: 3rem 1.5rem;
  }

  .aboutCTA__title {
    font-size: 1.75rem;
  }

  .aboutCTA__text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .aboutHero {
    padding: 2rem 1rem;
  }

  .aboutHero__title {
    font-size: 1.75rem;
  }

  .aboutHero__actions {
    flex-direction: column;
  }

  .aboutHero__actions .btn {
    width: 100%;
  }

  .aboutStats {
    padding: 2rem 1rem;
  }

  .aboutMission, .aboutServices, .aboutTeam {
    padding: 3rem 1rem;
  }

  .missionCard, .serviceCard {
    padding: 1.5rem;
  }

  .aboutCTA {
    padding: 2.5rem 1rem;
  }

  .aboutCTA__title {
    font-size: 1.5rem;
  }
}

.faqPage {
  background: #fff;
  width: 100%;
}

.faqHero {
  background: linear-gradient(#f8fafc 0%, #fff 100%);
  padding: 5rem 2rem 3rem;
}

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

.faqHero__content {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.faqHero__kicker {
  color: #f97316;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
}

.faqHero__kicker svg {
  flex-shrink: 0;
}

.faqHero__title {
  color: #0f172a;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.faqHero__titleAccent {
  color: #f97316;
}

.faqHero__lead {
  color: #475569;
  max-width: 600px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.faq {
  background: #fff;
  padding: 4rem 2rem;
}

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

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__headerTitle {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.faq__headerSubtitle {
  color: #64748b;
  margin: 0;
  font-size: 1.125rem;
}

.faq__list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.faq__item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all .3s;
  overflow: hidden;
}

.faq__item:hover {
  border-color: #fed7aa;
  box-shadow: 0 4px 16px #fb923c1a;
}

.faq__item.is-open {
  border-color: #fb923c;
  box-shadow: 0 6px 20px #fb923c26;
}

.faq__item.is-open .faq__question {
  color: #f97316;
  background: linear-gradient(135deg, #fffbf7, #fff5eb);
}

.faq__item.is-open .faq__questionIcon {
  color: #fff;
  background: #fb923c;
  transform: rotate(180deg);
}

.faq__item.is-open .faq__questionNumber {
  color: #fff;
  background: #fb923c;
}

.faq__question {
  cursor: pointer;
  text-align: left;
  background: #fff;
  border: none;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem 1.75rem;
  font-family: inherit;
  transition: all .3s;
  display: flex;
}

.faq__question:hover {
  background: #f8fafc;
}

.faq__questionNumber {
  color: #f97316;
  background: #fed7aa;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
}

.faq__questionText {
  color: #0f172a;
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq__questionIcon {
  background: #f1f5f9;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .3s;
  display: flex;
}

.faq__questionIcon svg {
  stroke: #64748b;
  transition: stroke .3s;
}

.faq__answer {
  padding: 0 1.75rem 1.75rem;
  animation: .3s ease-out slideDown;
}

.faq__answer[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__answerText {
  color: #475569;
  background: #f8fafc;
  border-left: 4px solid #fed7aa;
  border-radius: 8px;
  margin: 0;
  padding: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.faqCTA {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #fff);
  border-top: 1px solid #e2e8f0;
  padding: 5rem 2rem;
}

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

.faqCTA__icon {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
}

.faqCTA__icon svg {
  stroke: #fff;
}

.faqCTA__title {
  color: #0f172a;
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.faqCTA__text {
  color: #475569;
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.faqCTA__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.btnPrimary {
  color: #fff;
  background: #fb923c;
  box-shadow: 0 4px 12px #fb923c4d;
}

.btnPrimary:hover {
  background: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #fb923c66;
}

.btnSecondary {
  color: #0f172a;
  background: #fff;
  border: 2px solid #e2e8f0;
}

.btnSecondary:hover {
  color: #f97316;
  background: #f8fafc;
  border-color: #fb923c;
}

.btnLarge {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .faqHero {
    padding: 3rem 1.5rem 2rem;
  }

  .faqHero__title {
    font-size: 2rem;
  }

  .faqHero__lead {
    font-size: 1.125rem;
  }

  .faq {
    padding: 3rem 1.5rem;
  }

  .faq__headerTitle {
    font-size: 1.75rem;
  }

  .faq__headerSubtitle {
    font-size: 1rem;
  }

  .faq__question {
    gap: 1rem;
    padding: 1.25rem;
  }

  .faq__questionNumber {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  .faq__questionText {
    font-size: 1rem;
  }

  .faq__questionIcon {
    width: 32px;
    height: 32px;
  }

  .faq__questionIcon svg {
    width: 20px;
    height: 20px;
  }

  .faq__answer {
    padding: 0 1.25rem 1.5rem;
  }

  .faq__answerText {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faqCTA {
    padding: 3rem 1.5rem;
  }

  .faqCTA__icon {
    width: 64px;
    height: 64px;
  }

  .faqCTA__icon svg {
    width: 36px;
    height: 36px;
  }

  .faqCTA__title {
    font-size: 1.75rem;
  }

  .faqCTA__text {
    font-size: 1.125rem;
  }

  .faqCTA__actions {
    flex-direction: column;
  }

  .faqCTA__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faqHero {
    padding: 2rem 1rem 1.5rem;
  }

  .faqHero__title {
    font-size: 1.75rem;
  }

  .faq {
    padding: 2rem 1rem;
  }

  .faq__header {
    margin-bottom: 2rem;
  }

  .faq__question {
    gap: .75rem;
    padding: 1rem;
  }

  .faq__questionText {
    font-size: .95rem;
  }

  .faq__answerText {
    padding: 1rem;
  }

  .faqCTA {
    padding: 2.5rem 1rem;
  }

  .faqCTA__title {
    font-size: 1.5rem;
  }
}

.contactPage {
  background: #fff;
  width: 100%;
}

.contactHero {
  background: linear-gradient(#f8fafc 0%, #fff 100%);
  padding: 5rem 2rem 3rem;
}

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

.contactHero__content {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.contactHero__kicker {
  color: #f97316;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
}

.contactHero__kicker svg {
  flex-shrink: 0;
}

.contactHero__title {
  color: #0f172a;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.contactHero__titleAccent {
  color: #f97316;
}

.contactHero__lead {
  color: #475569;
  max-width: 600px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}

.contactMethods {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 4rem 2rem;
}

.contactMethods__inner {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.contactMethod {
  text-align: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all .3s;
}

.contactMethod:hover {
  border-color: #fb923c;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #fb923c26;
}

.contactMethod__icon {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.contactMethod__icon svg {
  stroke: #fff;
}

.contactMethod__content {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.contactMethod__title {
  color: #0f172a;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.contactMethod__text {
  color: #64748b;
  margin: 0;
  font-size: .95rem;
}

.contactMethod__link {
  color: #f97316;
  margin-top: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.contactMethod__link:hover {
  color: #fb923c;
  text-decoration: underline;
}

.contactMethod__address {
  color: #475569;
  margin-top: .5rem;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.6;
}

.contactMethod__hours {
  color: #64748b;
  margin: .5rem 0 0;
  font-size: .875rem;
  font-style: italic;
}

.contactFormSection {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.contactFormSection__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contactFormSection__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contactFormSection__title {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.contactFormSection__subtitle {
  color: #64748b;
  margin: 0;
  font-size: 1.125rem;
}

.contactInfo {
  background: #fff;
  padding: 5rem 2rem;
}

.contactInfo__inner {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.contactInfo__card {
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all .3s;
}

.contactInfo__card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px #0f172a14;
}

.contactInfo__icon {
  background: #fed7aa;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.contactInfo__icon svg {
  stroke: #f97316;
}

.contactInfo__title {
  color: #0f172a;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.contactInfo__text {
  color: #475569;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contactMethods__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contactInfo__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contactHero {
    padding: 3rem 1.5rem 2rem;
  }

  .contactHero__title {
    font-size: 2rem;
  }

  .contactHero__lead {
    font-size: 1.125rem;
  }

  .contactMethods {
    padding: 3rem 1.5rem;
  }

  .contactMethod {
    padding: 2rem 1.5rem;
  }

  .contactMethod__icon {
    width: 64px;
    height: 64px;
  }

  .contactMethod__icon svg {
    width: 24px;
    height: 24px;
  }

  .contactFormSection {
    padding: 3rem 1.5rem;
  }

  .contactFormSection__title {
    font-size: 2rem;
  }

  .contactInfo {
    padding: 3rem 1.5rem;
  }

  .contactInfo__icon {
    width: 56px;
    height: 56px;
  }

  .contactInfo__icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .contactHero {
    padding: 2rem 1rem 1.5rem;
  }

  .contactHero__title {
    font-size: 1.75rem;
  }

  .contactMethods {
    padding: 2rem 1rem;
  }

  .contactMethod {
    padding: 1.5rem 1rem;
  }

  .contactFormSection {
    padding: 2.5rem 1rem;
  }

  .contactFormSection__header {
    margin-bottom: 2rem;
  }

  .contactFormSection__title {
    font-size: 1.75rem;
  }

  .contactInfo {
    padding: 2.5rem 1rem;
  }

  .contactInfo__card {
    padding: 1.5rem;
  }
}

.legalPage {
  background: linear-gradient(135deg, #fb923c08 0%, #fff 100%);
  min-height: 100vh;
  padding: 6rem 1rem 4rem;
}

.legalPage__container {
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  box-shadow: 0 4px 20px #00000014;
}

.legalPage__title {
  color: #1a1a1a;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.legalPage__intro {
  color: #666;
  margin-bottom: 2.5rem;
  font-size: .95rem;
  font-style: italic;
}

.legalPage__section {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

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

.legalPage__section h2 {
  color: #1a1a1a;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
}

.legalPage__section h2:before {
  content: "";
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  border-radius: 2px;
  width: 4px;
  height: 1.5rem;
}

.legalPage__section h3 {
  color: #1a1a1a;
  margin: 1.5rem 0 .75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.legalPage__section p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

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

.legalPage__section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legalPage__section ul li {
  color: #666;
  margin-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}

.legalPage__section ul li::marker {
  color: #fb923c;
}

.legalPage__section strong {
  color: #1a1a1a;
  font-weight: 600;
}

.legalPage__section a {
  color: #fb923c;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.legalPage__section a:hover {
  color: #f97316;
  text-decoration: underline;
}

.legalPage .container {
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  box-shadow: 0 4px 20px #00000014;
}

.legalPage .container h1 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.legalPage .container h2 {
  color: #1a1a1a;
  align-items: center;
  gap: .5rem;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
}

.legalPage .container h2:before {
  content: "";
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  border-radius: 2px;
  width: 4px;
  height: 1.5rem;
}

.legalPage .container p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legalPage {
    padding: 5rem 1rem 3rem;
  }

  .legalPage__container, .legalPage .container {
    padding: 2rem 1.5rem;
  }

  .legalPage__title {
    font-size: 2rem;
  }

  .legalPage__section h2, .legalPage .container h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .legalPage {
    padding: 4.5rem 1rem 2.5rem;
  }

  .legalPage__container, .legalPage .container {
    padding: 1.5rem 1rem;
  }

  .legalPage__title {
    font-size: 1.75rem;
  }
}

.siteFooter {
  color: #fff;
  background: linear-gradient(#f97316 0%, #fb923c 100%);
  width: 100%;
  padding: 3rem 1rem 2rem;
}

.footerInner {
  grid-template-columns: 1fr minmax(140px, 220px) minmax(140px, 220px);
  align-items: start;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.footerCol h5 {
  color: #fffffff2;
  margin: 0 0 .6rem;
  font-size: .95rem;
}

.footerLogo {
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.footerTag {
  color: #ffffffe6;
  margin: 0 0 1rem;
  font-size: .95rem;
}

.footerLegal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footerLegal li {
  margin-bottom: .45rem;
}

.footerLegal a {
  color: #ffffffeb;
  text-decoration: none;
  transition: color .15s, -webkit-text-decoration .15s, text-decoration .15s;
}

.footerLegal a:hover, .footerLegal a:focus {
  color: #fff;
  outline: none;
  text-decoration: underline;
}

.footerContact a {
  color: #ffffffeb;
  text-decoration: none;
}

.footerContact a:hover, .footerContact a:focus {
  color: #fff;
  text-decoration: underline;
}

.footerCol, .footerBottom {
  overflow-wrap: anywhere;
}

.footerBottom {
  text-align: center;
  color: #fffc;
  border-top: 1px solid #ffffff0f;
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-size: .875rem;
}

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

  .footerBottom {
    text-align: left;
  }

  .siteFooter {
    padding: 2rem 1rem;
  }

  .footerLogo {
    font-size: 1.15rem;
  }

  .footerInner {
    gap: 1.25rem;
  }
}

.footerLegal a:focus, .footerContact a:focus {
  border-radius: 4px;
  box-shadow: 0 0 0 3px #ffffff1f;
}

/*# sourceMappingURL=style_main_scss_9414a643.css.map*/