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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-background-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 479px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #64748b;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #2563eb;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

.text--light {
  color: #64748b;
}
.text--white {
  color: #ffffff;
}
.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}
.text--right {
  text-align: right;
}

.margin-top-xs {
  margin-top: 0.25rem;
}

.margin-top-sm {
  margin-top: 0.5rem;
}

.margin-top-md {
  margin-top: 1rem;
}

.margin-top-lg {
  margin-top: 1.5rem;
}

.margin-top-xl {
  margin-top: 2rem;
}

.margin-bottom-xs {
  margin-bottom: 0.25rem;
}

.margin-bottom-sm {
  margin-bottom: 0.5rem;
}

.margin-bottom-md {
  margin-bottom: 1rem;
}

.margin-bottom-lg {
  margin-bottom: 1.5rem;
}

.margin-bottom-xl {
  margin-bottom: 2rem;
}

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

.main {
  margin-top: 80px;
}

.section {
  padding: 8rem 0;
}
.section--hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 0;
}
.section--primary {
  background-color: #ffffff;
}
.section--secondary {
  background-color: #f8fafc;
}
.section--cta {
  background-color: #2563eb;
  color: #ffffff;
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 300;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 1rem;
  }
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo:hover {
  color: #2563eb;
}

.nav__list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .nav__list {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__list.nav__list--active {
    left: 0;
  }
}
@media (max-width: 767px) {
  .nav__item {
    margin: 1rem 0;
  }
}
.nav__link {
  color: #64748b;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover, .nav__link--active {
  color: #2563eb;
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}

.hamburger {
  display: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  width: 25px;
  height: 3px;
  background-color: #1e293b;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.footer {
  background-color: #1e293b;
  color: #ffffff;
  padding: 4rem 0 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.footer__info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer__info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.footer__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer__contact {
    align-items: center;
  }
}
.footer__email {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__email:hover {
  color: #f59e0b;
}
.footer__social {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link:hover {
  color: #ffffff;
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.footer__bottom p {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #2563eb;
  color: #ffffff;
}
.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.btn--primary:hover {
  background-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  color: #1e293b;
  border-color: #e2e8f0;
}
.btn--secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.btn--secondary:hover {
  background-color: #f8fafc;
  border-color: #2563eb;
  transform: translateY(-2px);
}
.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  color: #2563eb;
}
.btn--white:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.btn--white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card.animate {
  opacity: 1;
  transform: translateY(0);
}
.card__image {
  height: 250px;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}
.card__image--large {
  height: 300px;
}
.card__image--xlarge {
  height: 400px;
}
.card__content {
  padding: 2rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}
.card__subtitle {
  color: #64748b;
  margin-bottom: 1rem;
}
.card__text {
  color: #64748b;
  margin-bottom: 1rem;
}
.card__text:last-child {
  margin-bottom: 0;
}
.card__link {
  color: #2563eb;
  font-weight: 600;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card__link:hover {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.card--service {
  text-align: center;
  padding: 3rem;
  border: 1px solid #e2e8f0;
}
.card--service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}
.card--work {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card--work:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card--work:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card--case {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #e2e8f0;
  border: none;
  box-shadow: none;
}
.card--case:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.card--case:hover {
  transform: none;
  box-shadow: none;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f1f5f9 25%, transparent 25%), linear-gradient(-45deg, #f1f5f9 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f1f5f9 75%), linear-gradient(-45deg, transparent 75%, #f1f5f9 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .hero__content {
    padding: 0 1rem;
  }
}
.hero__title {
  font-size: clamp(3rem, 8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #1e293b, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero__actions {
    flex-direction: column;
  }
}
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.geometric-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}
.geometric-shape--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}
.geometric-shape--2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 30%;
  animation-delay: 2s;
}
.geometric-shape--3 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.portfolio__filters {
  padding: 2rem 0;
  background-color: #ffffff;
}
.portfolio__filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio__grid {
  padding: 4rem 0 8rem;
  background-color: #ffffff;
}
.portfolio__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.portfolio__item {
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.portfolio__item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}
.portfolio__image {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.portfolio__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(245, 158, 11, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__overlay:hover {
  opacity: 1;
}
.portfolio__overlay-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.portfolio__overlay-subtitle {
  margin-bottom: 1rem;
  opacity: 0.9;
  color: #ffffff;
}
.portfolio__overlay-link {
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #ffffff;
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__overlay-link:hover {
  background-color: #ffffff;
  color: #2563eb;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid #e2e8f0;
  background-color: transparent;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover, .filter-btn--active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
.filter-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.page-header {
  padding: 6rem 0 4rem;
  text-align: center;
  background-color: #f8fafc;
}
.page-header__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 479px) {
  .page-header__title {
    font-size: 1.875rem;
  }
}
.page-header__subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.case-study {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #e2e8f0;
}
.case-study:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.case-study__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}
@media (max-width: 767px) {
  .case-study__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.case-study__image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.case-study__category {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.case-study__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}
@media (max-width: 767px) {
  .case-study__title {
    font-size: 1.5rem;
  }
}
.case-study__description {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.case-study__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.case-study__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .case-study__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.case-study__section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.case-study__section p {
  color: #64748b;
  margin-bottom: 0;
}

.tag {
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  color: #1e293b;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}
.process__step {
  text-align: center;
}
.process__step-number {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}
.process__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}
.process__step-description {
  color: #64748b;
}

.icon {
  display: inline-block;
}
.icon--service {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  color: #2563eb;
}
.icon--service svg {
  width: 100%;
  height: 100%;
}
.icon--small {
  width: 20px;
  height: 20px;
}
.icon--medium {
  width: 32px;
  height: 32px;
}
.icon--large {
  width: 48px;
  height: 48px;
}
.icon--primary {
  color: #2563eb;
}
.icon--secondary {
  color: #64748b;
}
.icon--white {
  color: #ffffff;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading--active {
  opacity: 1;
  visibility: visible;
}
.loading__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #e2e8f0;
  border-top: 3px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.content--loading {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #1e293b;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--3-cols {
    grid-template-columns: 1fr;
  }
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

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