@charset "UTF-8";
/*
Theme Name: CtrlZ Studio Theme
Theme URI: https://ctrlzstudio.pl
Author: Karol - CtrlZ Studio
Author URI: https://ctrlzstudio.pl
Description: Nowoczesny motyw z SCSS i metodologią BEM
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ctrlz-studio
Tags: custom-background, custom-logo, custom-menu, featured-images
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #f8fafc;
  background-color: #020817;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #2563eb;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #cbd5e1;
}

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

.section-padding {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.floating-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.floating-gradient--1 {
  top: -200px;
  left: -200px;
}
.floating-gradient--2 {
  bottom: -200px;
  right: -200px;
  animation-delay: 4s;
}
.floating-gradient--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
  opacity: 0.5;
}
.floating-gradient--4 {
  top: 120vh;
  left: 10%;
  opacity: 0.3;
  animation-delay: 1s;
}
.floating-gradient--5 {
  top: 180vh;
  right: 15%;
  opacity: 0.4;
  animation-delay: 3s;
}
.floating-gradient--6 {
  top: 250vh;
  left: 20%;
  opacity: 0.35;
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(30, 58, 95, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 58, 95, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.privacy-policy {
  background: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0d1b2a 100%);
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 0;
  }
}
.privacy-policy__container {
  padding: 80px 0px;
  max-width: 1260px;
  margin: 0 auto;
}
.privacy-policy__content {
  margin: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .privacy-policy__content {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__content {
    padding: 30px 20px;
  }
}
.privacy-policy__title {
  font-size: 48px;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .privacy-policy__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__title {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
}
.privacy-policy__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .privacy-policy__text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .privacy-policy__text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.privacy-policy__text p:last-child {
  margin-bottom: 0;
}
.privacy-policy__text p strong {
  font-weight: 400;
  color: #ffffff;
}
.privacy-policy__text p a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.privacy-policy__text p a:hover {
  border-bottom-color: #ffffff;
  color: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.privacy-policy__title.animate-in {
  animation-duration: 1s;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .thank-you-page {
    padding: 80px 0;
    overflow-x: hidden;
  }
}
@media (max-width: 480px) {
  .thank-you-page {
    padding: 60px 0;
    overflow-x: hidden;
  }
}
.thank-you-page__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.thank-you-page__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you-page__animation {
  margin-bottom: 60px;
  animation: fadeInScale 0.8s ease both;
}
@media (max-width: 480px) {
  .thank-you-page__animation {
    margin-bottom: 40px;
  }
}
.thank-you-page__container {
  max-width: 700px;
  width: 100%;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .thank-you-page__container {
    padding: 0 1rem;
  }
}
.thank-you-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.thank-you-page__badge i {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}
.thank-you-page__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #f8fafc;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.thank-you-page__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}
@media (max-width: 480px) {
  .thank-you-page__description {
    font-size: 16px;
    margin-bottom: 36px;
  }
}
.thank-you-page__info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
@media (max-width: 480px) {
  .thank-you-page__info-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.thank-you-page__info-item {
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.thank-you-page__info-item:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.thank-you-page__info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.thank-you-page__info-icon i {
  font-size: 20px;
  color: #3b82f6;
}
.thank-you-page__info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.thank-you-page__info-text strong {
  font-size: 16px;
  font-weight: 500;
  color: #f8fafc;
}
.thank-you-page__info-text span {
  font-size: 13px;
  color: #94a3b8;
}
.thank-you-page__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .thank-you-page__cta {
    flex-direction: column;
  }
}
.thank-you-page__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  padding: 14px 32px;
}
.thank-you-page__cta .btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.thank-you-page__cta .btn:hover i {
  transform: translateX(4px);
}
.thank-you-page__btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #f8fafc;
  border: none;
  min-width: 200px;
}
.thank-you-page__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
@media (max-width: 480px) {
  .thank-you-page__btn-primary {
    min-width: auto;
    width: 100%;
  }
}
.thank-you-page__btn-secondary {
  background: transparent;
  color: #3b82f6;
  border: 1px solid rgba(37, 99, 235, 0.3);
  min-width: 200px;
}
.thank-you-page__btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: #3b82f6;
  transform: translateY(-3px);
}
@media (max-width: 480px) {
  .thank-you-page__btn-secondary {
    min-width: auto;
    width: 100%;
  }
}
.thank-you-page__social {
  animation: fadeInUp 0.8s ease 0.7s both;
  padding-top: 32px;
  border-top: 1px solid rgba(30, 41, 59, 0.3);
}
.thank-you-page__social-label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 400;
}
.thank-you-page__social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thank-you-page__social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  color: #3b82f6;
  transition: all 0.3s ease;
  text-decoration: none;
}
.thank-you-page__social-links a i {
  font-size: 16px;
}
.thank-you-page__social-links a:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  color: #f8fafc;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.thank-you-page__decoration {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.6);
  border-radius: 50%;
  z-index: 0;
}
.thank-you-page__decoration--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation: rotate 30s linear infinite;
}
@media (max-width: 768px) {
  .thank-you-page__decoration--1 {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .thank-you-page__decoration--1 {
    display: none;
  }
}
.thank-you-page__decoration--2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: -5%;
  animation: rotate 40s linear infinite reverse;
}
@media (max-width: 768px) {
  .thank-you-page__decoration--2 {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .thank-you-page__decoration--2 {
    display: none;
  }
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  animation: scaleCheckmark 0.6s ease-in-out;
}
@media (max-width: 480px) {
  .checkmark-circle {
    width: 100px;
    height: 100px;
  }
}

.checkmark {
  width: 100%;
  height: 100%;
  display: block;
}

.checkmark-circle {
  stroke: #2563eb;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkmarkCircle 0.6s ease-in-out 0.4s forwards;
}

.checkmark-check {
  stroke: #3b82f6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkmarkCheck 0.6s ease-in-out 0.7s forwards;
  fill: none;
}

@keyframes scaleCheckmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkmarkCircle {
  0% {
    stroke-dashoffset: 166;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmarkCheck {
  0% {
    stroke-dashoffset: 48;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 8, 23, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.3);
  transition: all 0.3s ease;
}
.navigation.scrolled {
  background: rgba(2, 8, 23, 0.95);
  border-bottom-color: rgba(30, 41, 59, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navigation__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .navigation__container {
    padding: 1rem 1.5rem;
  }
}
.navigation__brand {
  z-index: 1001;
}
.navigation__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navigation__logo:hover {
  transform: scale(1.05);
}
.navigation__logo-image {
  height: 40px;
  width: auto;
}
@media (max-width: 480px) {
  .navigation__logo-image {
    height: 35px;
  }
}
.navigation__logo-text {
  font-size: 24px;
  font-weight: 300;
  color: #f8fafc;
  letter-spacing: -0.5px;
}
.navigation__logo-text .gradient-text {
  font-weight: 500;
}
@media (max-width: 480px) {
  .navigation__logo-text {
    font-size: 20px;
  }
}
.navigation__menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .navigation__menu-wrapper {
    display: none;
  }
}
.navigation__menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.navigation__item {
  position: relative;
}
.navigation__item--active .navigation__link {
  color: #3b82f6;
}
.navigation__item--active .navigation__link::after {
  width: 100%;
}
.navigation__link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}
.navigation__link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  width: 0;
  transition: width 0.3s ease;
}
.navigation__link:hover {
  color: #f8fafc;
  background: rgba(37, 99, 235, 0.08);
}
.navigation__link:hover::after {
  width: calc(100% - 2.5rem);
}
.navigation__cta {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__cta {
    display: none;
  }
}
.navigation__cta .btn--small {
  padding: 10px 24px;
  font-size: 14px;
}
.navigation__cta .btn--small i {
  font-size: 12px;
}
.navigation__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
  color: #f8fafc;
  font-size: 24px;
}
@media (max-width: 768px) {
  .navigation__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.navigation__toggle:hover {
  color: #3b82f6;
  transform: scale(1.1);
}
.navigation__toggle.active i::before {
  content: "\f00d";
}
.navigation__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-left: 1px solid rgba(30, 41, 59, 0.5);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
}
.navigation__mobile.active {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .navigation__mobile {
    max-width: 100%;
  }
}
.navigation__mobile-content {
  padding: 8rem 2rem 3rem;
}
.navigation__mobile-menu {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}
.navigation__mobile-item {
  margin-bottom: 0.25rem;
}
.navigation__mobile-item--active .navigation__mobile-link {
  background: rgba(37, 99, 235, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
}
.navigation__mobile-item--active .navigation__mobile-link i {
  color: #3b82f6;
}
.navigation__mobile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.navigation__mobile-link i {
  color: #94a3b8;
  font-size: 12px;
  transition: all 0.3s ease;
}
.navigation__mobile-link:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #f8fafc;
  padding-left: 2rem;
}
.navigation__mobile-link:hover i {
  color: #3b82f6;
  transform: translateX(4px);
}
.navigation__mobile-cta {
  margin-bottom: 3rem;
}
.navigation__mobile-cta .btn--full {
  width: 100%;
  justify-content: center;
}
.navigation__mobile-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}
.navigation__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navigation__social-link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  color: #f8fafc;
  transform: translateY(-4px);
}

.navigation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 8, 23, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}
.navigation-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 8, 23, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid #1e293b;
  transition: all 0.3s ease;
}
.navigation--scrolled {
  background: rgba(2, 8, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navigation__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .navigation__container {
    padding: 0 1.5rem;
  }
}
.navigation__logo {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f8fafc;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.navigation__logo:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}
.navigation__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .navigation__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: right 0.3s ease;
    border-left: 1px solid #1e293b;
  }
  .navigation__menu--active {
    right: 0;
  }
}
.navigation__link {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.navigation__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transition: width 0.3s ease;
}
.navigation__link:hover {
  color: #f8fafc;
}
.navigation__link:hover::after {
  width: 100%;
}
.navigation__toggle {
  display: none;
  background: none;
  border: none;
  color: #f8fafc;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .navigation__toggle {
    display: block;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  color: white;
}
.btn--secondary {
  background: transparent;
  color: #f8fafc;
  border: 1px solid #1e293b;
}
.btn--secondary:hover {
  background: #0f172a;
  border-color: #3b82f6;
  transform: translateY(-3px);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
    overflow-x: hidden;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
    overflow-x: hidden;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  animation: fadeInUp 0.8s ease both;
}
@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero__content {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .hero__text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__text {
    text-align: left;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__badge i {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}
.hero__badge:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #f8fafc;
  animation: fadeInUp 0.8s ease 0.3s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero__title-highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
  position: relative;
}
.hero__title-highlight::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.8s both;
}
.hero__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 650px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }
}
.hero__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  padding: 14px 32px;
}
.hero__cta .btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.hero__cta .btn:hover i {
  transform: translateX(4px);
}
.hero__btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #f8fafc;
  border: none;
}
.hero__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
.hero__btn-secondary {
  background: transparent;
  color: #3b82f6;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.hero__btn-secondary:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: #3b82f6;
  transform: translateY(-3px);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  animation: fadeInUp 0.8s ease 0.6s both;
}
@media (max-width: 768px) {
  .hero__stats {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .hero__stat {
    justify-content: flex-start;
  }
}
.hero__stat:hover {
  transform: translateY(-4px);
}
.hero__stat:hover .hero__stat-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  transform: scale(1.1);
}
.hero__stat:hover .hero__stat-icon i {
  color: #f8fafc;
}
.hero__stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hero__stat-icon i {
  font-size: 20px;
  color: #3b82f6;
  transition: color 0.3s ease;
}
.hero__stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-number {
  font-size: 28px;
  font-weight: 300;
  color: #f8fafc;
  line-height: 1;
}
.hero__stat-label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.hero__visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero__visual {
    display: none;
  }
}
.hero__float-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.hero__float-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.5);
}
.hero__float-card--1 {
  top: 20%;
  right: 10%;
  animation: floatCard 6s ease-in-out infinite;
}
.hero__float-card--2 {
  bottom: 25%;
  left: 15%;
  animation: floatCard 8s ease-in-out infinite 1s;
}
.hero__float-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  flex-shrink: 0;
}
.hero__float-icon i {
  font-size: 20px;
  color: #f8fafc;
}
.hero__float-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__float-text strong {
  font-size: 16px;
  font-weight: 500;
  color: #f8fafc;
}
.hero__float-text span {
  font-size: 13px;
  color: #cbd5e1;
}
.hero__floating-shape {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(37, 99, 235, 0.6);
  transition: all 0.3s ease;
}
.hero__floating-shape--circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 35%;
  left: 25%;
  animation: floatShape 10s ease-in-out infinite;
}
.hero__floating-shape--square {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  bottom: 15%;
  right: 20%;
  animation: floatShape 12s ease-in-out infinite 2s;
  transform: rotate(45deg);
}
.hero__decoration {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.6);
  border-radius: 50%;
  z-index: 0;
}
.hero__decoration--1 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  animation: rotate 30s linear infinite;
}
@media (max-width: 768px) {
  .hero__decoration--1 {
    display: none;
  }
}
.hero__decoration--2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -10%;
  animation: rotate 40s linear infinite reverse;
}
@media (max-width: 768px) {
  .hero__decoration--2 {
    display: none;
  }
}
.hero__shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(37, 99, 235, 0.35);
  border-radius: 20px;
  z-index: 0;
}
.hero__shape--1 {
  top: 30%;
  right: 15%;
  animation: floatShape 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__shape--1 {
    display: none;
  }
}
.hero__shape--2 {
  bottom: 20%;
  left: 10%;
  animation: floatShape 8s ease-in-out infinite reverse;
}
@media (max-width: 768px) {
  .hero__shape--2 {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes shimmer {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.8;
  }
}
@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}
.services {
  background: #020817;
  position: relative;
  overflow: hidden;
}
.services__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}
@media (max-width: 480px) {
  .services__header {
    margin-bottom: 3rem;
  }
}
.services__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.services__label i {
  font-size: 14px;
}
.services__label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.services__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.services__title .gradient-text {
  position: relative;
  display: inline-block;
}
.services__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}
.services__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
}
.services__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .services__grid {
    gap: 1.5rem;
  }
}
.services__row {
  display: flex;
  gap: 2rem;
}
.services__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .services__row {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .services__row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.services__card {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  flex: 1;
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.services__card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
}
.services__card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}
.services__card:hover::before {
  transform: scaleX(1);
}
.services__card:hover::after {
  opacity: 1;
  top: -50%;
  left: -50%;
}
.services__card:hover .services__icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
.services__card:hover .services__icon i {
  color: #f8fafc;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .services__card {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .services__card {
    padding: 2rem 1.5rem;
  }
}
.services__icon {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.services__icon i {
  color: #3b82f6;
  transition: all 0.3s ease;
}
.services__card-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #f8fafc;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .services__card-title {
    font-size: 1.25rem;
  }
}
.services__card-description {
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.services__features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.services__feature {
  padding: 0.75rem 0;
  color: #cbd5e1;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}
.services__feature i {
  color: #3b82f6;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}
.services__feature:hover {
  color: #f8fafc;
  padding-left: 8px;
}
.services__feature:hover i {
  color: #2563eb;
  transform: scale(1.2);
}

.floating-gradient--purple {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  position: absolute;
  top: 20%;
  right: -10%;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGradient 20s ease-in-out infinite;
}

@keyframes floatGradient {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(30px, 50px) scale(0.9);
  }
}
.portfolio {
  background: #020817;
  position: relative;
  overflow: hidden;
}
.portfolio__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.portfolio .container {
  position: relative;
  z-index: 1;
}
.portfolio__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}
@media (max-width: 480px) {
  .portfolio__header {
    margin-bottom: 2.5rem;
  }
}
.portfolio__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.portfolio__label i {
  font-size: 14px;
}
.portfolio__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.portfolio__title .gradient-text {
  position: relative;
  display: inline-block;
}
.portfolio__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
}
.portfolio__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
}
.portfolio__slider-wrapper {
  position: relative;
  margin-bottom: 2rem;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.portfolio__swiper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}
.portfolio .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.portfolio .swiper-slide {
  height: auto;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.portfolio__item {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}
.portfolio__item:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}
.portfolio__item:hover .portfolio__image-overlay {
  opacity: 0.3;
}
.portfolio__item:hover .portfolio__item-title {
  color: #3b82f6;
}
.portfolio__image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .portfolio__image-wrapper {
    height: 200px;
  }
}
.portfolio__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.portfolio__image-placeholder i {
  font-size: 3rem;
  color: rgba(203, 213, 225, 0.3);
}
.portfolio__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 8, 23, 0.8) 100%);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.portfolio__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.portfolio__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.portfolio__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  font-size: 11px;
  color: #3b82f6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio__category i {
  font-size: 9px;
}
.portfolio__item-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #f8fafc;
  line-height: 1.3;
  transition: color 0.3s ease;
  margin: 0;
}
@media (max-width: 480px) {
  .portfolio__item-title {
    font-size: 1.125rem;
  }
}
.portfolio__item-description {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.portfolio__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}
.portfolio__tech-tag {
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 8px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  transition: all 0.3s ease;
}
.portfolio__tech-tag:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #3b82f6;
}
.portfolio__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 1rem;
}
.portfolio__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.portfolio__link i {
  font-size: 12px;
}
.portfolio__link--details {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #3b82f6;
}
.portfolio__link--details:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}
.portfolio__link--live {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: 1px solid transparent;
  color: #f8fafc;
}
.portfolio__link--live:hover {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.portfolio__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.portfolio__nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(30, 41, 59, 0.5);
  color: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio__nav-btn i {
  font-size: 16px;
}
.portfolio__nav-btn:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
  color: #3b82f6;
}
@media (max-width: 480px) {
  .portfolio__nav-btn {
    width: 44px;
    height: 44px;
  }
}
.portfolio__pagination {
  display: none;
}
.portfolio__empty {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  margin-bottom: 3rem;
}
.portfolio__empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio__empty-icon i {
  font-size: 2rem;
  color: #3b82f6;
}
.portfolio__empty-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}
.portfolio__empty-text {
  color: #cbd5e1;
  font-size: 16px;
}
.portfolio__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.portfolio__cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
}
.portfolio__cta .btn i {
  font-size: 14px;
}
@media (max-width: 480px) {
  .portfolio__cta {
    flex-direction: column;
  }
  .portfolio__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.floating-gradient--cyan {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  position: absolute;
  top: 30%;
  right: -15%;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.process {
  background: #0a1628;
  position: relative;
  overflow: hidden;
}
.process__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.process .container {
  position: relative;
  z-index: 1;
}
.process__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 6rem;
}
@media (max-width: 480px) {
  .process__header {
    margin-bottom: 4rem;
  }
}
.process__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.process__label i {
  font-size: 14px;
}
.process__label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.process__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.process__title .gradient-text {
  position: relative;
  display: inline-block;
}
.process__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}
.process__timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.process__step {
  display: flex;
  gap: 6rem;
  margin-bottom: 6rem;
  position: relative;
  align-items: center;
}
@media (max-width: 768px) {
  .process__step {
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .process__step {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.process__step--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 480px) {
  .process__step--reverse {
    flex-direction: column;
  }
}
.process__line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0.5), rgba(37, 99, 235, 0.1));
  margin: 0 auto 2rem;
  position: relative;
}
.process__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}
.process__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
}
@media (max-width: 480px) {
  .process__line {
    display: none;
  }
}
.process__content {
  flex: 1;
}
.process__number {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 200;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .process__number {
    font-size: 5rem;
  }
}
.process__step-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #f8fafc;
}
.process__step-description {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 16px;
}
.process__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
  transition: all 0.3s ease;
}
.process__feature i {
  color: #3b82f6;
  font-size: 14px;
  flex-shrink: 0;
}
.process__feature:hover {
  color: #f8fafc;
  padding-left: 8px;
}
.process__feature:hover i {
  color: #2563eb;
  transform: scale(1.2);
}
.process__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .process__visual {
    order: -1;
  }
}
.process__icon-wrapper {
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  transition: all 0.5s ease;
}
.process__icon-wrapper i {
  color: #3b82f6;
  z-index: 2;
  position: relative;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .process__icon-wrapper {
    width: 220px;
    height: 220px;
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .process__icon-wrapper {
    width: 180px;
    height: 180px;
    font-size: 50px;
  }
}
.process__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #2563eb;
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.process__step:hover .process__icon-wrapper {
  transform: scale(1.05);
  border-color: #3b82f6;
  background: rgba(37, 99, 235, 0.15);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.4);
}
.process__step:hover .process__icon-wrapper i {
  color: #2563eb;
  transform: scale(1.1) rotate(5deg);
}

.floating-gradient--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  position: absolute;
  bottom: 10%;
  left: -10%;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGradient 25s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}
.about {
  background: #0a1628;
  position: relative;
  overflow: hidden;
}
.about__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.about .container {
  position: relative;
  z-index: 1;
}
.about__content {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.about__text {
  flex: 1;
}
.about__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.about__label i {
  font-size: 14px;
}
.about__label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 2rem;
  color: #f8fafc;
  line-height: 1.2;
}
.about__title .gradient-text {
  position: relative;
  display: inline-block;
}
.about__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}
.about__description {
  margin-bottom: 3rem;
}
.about__description p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about__description p:last-child {
  margin-bottom: 0;
}
.about__description p strong {
  color: #f8fafc;
  font-weight: 500;
}
.about__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}
@media (max-width: 480px) {
  .about__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.about__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.about__stat:hover {
  transform: translateY(-4px);
}
.about__stat:hover .about__stat-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  transform: scale(1.1);
}
.about__stat:hover .about__stat-icon i {
  color: #f8fafc;
}
.about__stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.about__stat-icon i {
  font-size: 20px;
  color: #3b82f6;
  transition: color 0.3s ease;
}
.about__stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-number {
  font-size: 28px;
  font-weight: 300;
  color: #f8fafc;
  line-height: 1;
}
.about__stat-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.about__skills {
  margin-top: 2rem;
}
.about__skills-title {
  font-size: 18px;
  font-weight: 400;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}
.about__skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.about__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about__visual {
    order: -1;
  }
}
.about__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 480px) {
  .about__image-wrapper {
    max-width: 100%;
  }
}
.about__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 2px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}
.about__image:hover {
  transform: scale(1.02);
  border-color: #3b82f6;
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.3);
}
.about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
  pointer-events: none;
}
.about__image-wrapper:hover .about__image-overlay {
  opacity: 1;
}
.about__decoration {
  position: absolute;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: rotate 30s linear infinite;
}
.about__decoration--1 {
  width: 400px;
  height: 400px;
  top: -50px;
  right: -50px;
}
@media (max-width: 768px) {
  .about__decoration--1 {
    width: 300px;
    height: 300px;
    top: -30px;
    right: -30px;
  }
}
@media (max-width: 480px) {
  .about__decoration--1 {
    display: none;
  }
}
.about__decoration--2 {
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -30px;
  animation: rotate 20s linear infinite reverse;
}
@media (max-width: 480px) {
  .about__decoration--2 {
    display: none;
  }
}
.about__badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 4;
  animation: floatBadge 4s ease-in-out infinite;
  transition: all 0.3s ease;
}
.about__badge i {
  font-size: 24px;
  color: #3b82f6;
  flex-shrink: 0;
}
.about__badge:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #3b82f6;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}
.about__badge--1 {
  top: 10%;
  left: -60px;
}
@media (max-width: 768px) {
  .about__badge--1 {
    left: -40px;
  }
}
@media (max-width: 480px) {
  .about__badge--1 {
    display: none;
  }
}
.about__badge--2 {
  bottom: 15%;
  right: -60px;
  animation-delay: 2s;
}
@media (max-width: 768px) {
  .about__badge--2 {
    right: -40px;
  }
}
@media (max-width: 480px) {
  .about__badge--2 {
    display: none;
  }
}
.about__badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__badge-content strong {
  font-size: 14px;
  font-weight: 500;
  color: #f8fafc;
  line-height: 1.2;
}
.about__badge-content span {
  font-size: 11px;
  color: #cbd5e1;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 13px;
  color: #cbd5e1;
  transition: all 0.3s ease;
  font-weight: 400;
}
.skill-tag i {
  font-size: 14px;
  color: #3b82f6;
}
.skill-tag:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
.skill-tag:hover i {
  color: #2563eb;
  transform: scale(1.2);
}

.floating-gradient--purple-light {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  position: absolute;
  top: 50%;
  left: -15%;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGradient 28s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.testimonials {
  background: #020817;
  position: relative;
  overflow: hidden;
}
.testimonials__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}
@media (max-width: 480px) {
  .testimonials__header {
    margin-bottom: 3rem;
  }
}
.testimonials__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.testimonials__label i {
  font-size: 14px;
}
.testimonials__label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}
.testimonials__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.testimonials__title .gradient-text {
  position: relative;
  display: inline-block;
}
.testimonials__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}
.testimonials__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
}
.testimonials__slider-wrapper {
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .testimonials__slider-wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 480px) {
  .testimonials__slider-wrapper {
    padding: 0 40px;
  }
}
.testimonials__slider {
  overflow: hidden;
  width: 100%;
}
.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .testimonials__track {
    gap: 2rem;
  }
}
.testimonials__slide {
  flex: 0 0 calc(33.333% - 1.667rem);
}
@media (max-width: 768px) {
  .testimonials__slide {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 480px) {
  .testimonials__slide {
    flex: 0 0 100%;
  }
}
.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(15, 23, 42, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.testimonials__arrow i {
  font-size: 18px;
  color: #f8fafc;
  transition: all 0.3s ease;
}
.testimonials__arrow:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.6);
  transform: translateY(-50%) scale(1.1);
}
.testimonials__arrow:hover i {
  color: #3b82f6;
}
.testimonials__arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.testimonials__arrow--prev {
  left: -70px;
}
@media (max-width: 768px) {
  .testimonials__arrow--prev {
    left: 0;
  }
}
@media (max-width: 480px) {
  .testimonials__arrow--prev {
    left: -5px;
  }
}
.testimonials__arrow--next {
  right: -70px;
}
@media (max-width: 768px) {
  .testimonials__arrow--next {
    right: 0;
  }
}
@media (max-width: 480px) {
  .testimonials__arrow--next {
    right: -5px;
  }
}
@media (max-width: 768px) {
  .testimonials__arrow {
    width: 45px;
    height: 45px;
  }
  .testimonials__arrow i {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .testimonials__arrow {
    width: 40px;
    height: 40px;
  }
  .testimonials__arrow i {
    font-size: 14px;
  }
}
.testimonials__card {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonials__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.testimonials__card:hover {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 25px 70px rgba(37, 99, 235, 0.2);
}
.testimonials__card:hover::before {
  transform: scaleX(1);
}
.testimonials__card:hover::after {
  opacity: 1;
  top: -50%;
  left: -50%;
}
.testimonials__card:hover .testimonials__quote-icon {
  transform: scale(1.1) rotate(-5deg);
  color: #3b82f6;
}
.testimonials__card:hover .testimonials__avatar {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
@media (max-width: 768px) {
  .testimonials__card {
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .testimonials__card {
    padding: 2rem;
  }
}
.testimonials__quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.15);
  transition: all 0.4s ease;
  z-index: 1;
}
@media (max-width: 480px) {
  .testimonials__quote-icon {
    font-size: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.testimonials__rating {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.testimonials__rating i {
  color: #fbbf24;
  font-size: 16px;
}
.testimonials__rating i.far {
  color: rgba(148, 163, 184, 0.3);
}
.testimonials__text {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 2;
  flex: 1;
  font-style: italic;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  position: relative;
  z-index: 2;
}
.testimonials__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #f8fafc;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 2px solid rgba(37, 99, 235, 0.3);
}
.testimonials__author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonials__author-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.testimonials__author-position {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}
.testimonials__author-company {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin: 0.25rem 0 0;
  line-height: 1.4;
}
.testimonials__company-link {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
}
.testimonials__company-link:hover {
  color: #2563eb;
  text-decoration: underline;
}
.testimonials__trust {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}
@media (max-width: 768px) {
  .testimonials__trust {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .testimonials__trust {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.testimonials__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.testimonials__trust-item i {
  font-size: 32px;
  color: #3b82f6;
  transition: all 0.3s ease;
}
.testimonials__trust-item span {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
  max-width: 150px;
  line-height: 1.4;
}
.testimonials__trust-item:hover i {
  color: #2563eb;
}
.testimonials__trust-item:hover span {
  color: #f8fafc;
}

.floating-gradient--orange {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.12) 0%, transparent 70%);
  position: absolute;
  bottom: 20%;
  right: -10%;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGradient 32s ease-in-out infinite;
}

.contact {
  background: #0a1628;
  position: relative;
  overflow: hidden;
}
.contact__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact__wrapper {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact__wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}
.contact__info {
  flex: 1;
}
.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.contact__label i {
  font-size: 14px;
}
.contact__label:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}
.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.contact__title .gradient-text {
  position: relative;
  display: inline-block;
}
.contact__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  animation: expandWidth 1s ease 0.3s both;
}
.contact__description {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact__description strong {
  color: #f8fafc;
  font-weight: 500;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.contact__item:hover {
  transform: translateX(8px);
}
.contact__item:hover .contact__icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  transform: scale(1.1);
}
.contact__item:hover .contact__icon i {
  color: #f8fafc;
}
.contact__icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact__icon i {
  color: #3b82f6;
  transition: color 0.3s ease;
}
.contact__item-text h4 {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact__item-text p,
.contact__item-text a {
  font-size: 16px;
  color: #f8fafc;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__item-text p:hover,
.contact__item-text a:hover {
  color: #3b82f6;
}
.contact__social {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}
.contact__social h4 {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact__social-links {
  display: flex;
  gap: 12px;
}
.contact__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact__social-link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  color: #f8fafc;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}
.contact__form-wrapper {
  flex: 1;
}
.contact__form-card {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact__form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
@media (max-width: 768px) {
  .contact__form-card {
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .contact__form-card {
    padding: 2rem;
  }
}
.contact__form-header {
  margin-bottom: 2.5rem;
}
.contact__form-header h3 {
  font-size: 24px;
  font-weight: 400;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.contact__form-header p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}
.form-group label i {
  color: #3b82f6;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(2, 8, 23, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  color: #f8fafc;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #94a3b8;
  opacity: 0.6;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.6;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(2, 8, 23, 0.8);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(37, 99, 235, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.form-group--checkbox {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-label .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(30, 41, 59, 0.5);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.checkbox-label .checkbox-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 25%;
  transform: translate(-50%, -50%) scale(0);
  color: #f8fafc;
  font-size: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}
.checkbox-label .checkbox-text {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}
.checkbox-label:hover .checkbox-custom {
  border-color: #3b82f6;
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}
.btn--full i {
  font-size: 16px;
}

.floating-gradient--green {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  position: absolute;
  top: 40%;
  left: 50%;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGradient 35s ease-in-out infinite;
}

.footer {
  background: #020817;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.3;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.footer__brand {
  max-width: 400px;
}
.footer__logo {
  margin-bottom: 1.5rem;
}
.footer__logo h3 {
  font-size: 28px;
  font-weight: 300;
  color: #f8fafc;
  letter-spacing: -0.5px;
}
.footer__logo h3 .gradient-text {
  font-weight: 400;
}
.footer__tagline {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  color: #f8fafc;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.footer__links-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}
.footer__links-title i {
  color: #3b82f6;
  font-size: 16px;
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links ul li {
  margin-bottom: 12px;
}
.footer__links ul li:last-child {
  margin-bottom: 0;
}
.footer__links ul li a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer__links ul li a:hover {
  color: #3b82f6;
  padding-left: 8px;
}
.footer__contact li {
  margin-bottom: 16px;
}
.footer__contact li:last-child {
  margin-bottom: 0;
}
.footer__contact li a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
  display: inline-block;
}
.footer__contact li a:hover {
  color: #3b82f6;
}
.footer__bottom {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
  position: relative;
}
.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer__copyright {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}
.footer__copyright strong {
  color: #f8fafc;
  font-weight: 500;
}
.footer__links-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__links-legal a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__links-legal a:hover {
  color: #f8fafc;
}
.footer__links-legal span {
  color: rgba(148, 163, 184, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
.back-to-top i {
  font-size: 18px;
  color: #f8fafc;
  transition: transform 0.3s ease;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}
.back-to-top:hover i {
  transform: translateY(-3px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor--hover {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  opacity: 1;
}
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

.portfolio-page {
  background: #020817;
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 6rem;
}
@media (max-width: 480px) {
  .portfolio-page {
    padding-top: 100px;
    padding-bottom: 4rem;
  }
}
.portfolio-page__background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.portfolio-page .container {
  position: relative;
  z-index: 1;
}
.portfolio-page__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
@media (max-width: 480px) {
  .portfolio-page__header {
    margin-bottom: 3rem;
  }
}
.portfolio-page__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(37, 99, 235, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: #3b82f6;
  margin-bottom: 24px;
}
.portfolio-page__label i {
  font-size: 14px;
}
.portfolio-page__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
.portfolio-page__title .gradient-text {
  position: relative;
  display: inline-block;
}
.portfolio-page__title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
}
.portfolio-page__description {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .portfolio-page__description {
    font-size: 16px;
  }
}
.portfolio-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .portfolio-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .portfolio-page__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.portfolio-page__item {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.portfolio-page__item.loading-in {
  opacity: 0;
  transform: translateY(30px);
}
.portfolio-page__item.loaded {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.portfolio-page__item:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}
.portfolio-page__item:hover .portfolio-page__image-overlay {
  opacity: 0.2;
}
.portfolio-page__item:hover .portfolio-page__quick-actions {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.portfolio-page__item:hover .portfolio-page__item-title a {
  color: #3b82f6;
}
.portfolio-page__image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .portfolio-page__image-wrapper {
    height: 200px;
  }
}
.portfolio-page__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-page__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
}
.portfolio-page__image-placeholder i {
  font-size: 3rem;
  color: rgba(203, 213, 225, 0.3);
}
.portfolio-page__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(2, 8, 23, 0.8) 100%);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.portfolio-page__quick-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}
.portfolio-page__quick-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(2, 8, 23, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.portfolio-page__quick-btn i {
  font-size: 16px;
}
.portfolio-page__quick-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  transform: scale(1.1);
}
.portfolio-page__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.portfolio-page__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.portfolio-page__category, .portfolio-page__client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  font-size: 11px;
  color: #3b82f6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.portfolio-page__category i, .portfolio-page__client i {
  font-size: 9px;
}
.portfolio-page__client {
  background: rgba(30, 41, 59, 0.3);
  border-color: rgba(30, 41, 59, 0.5);
  color: #94a3b8;
}
.portfolio-page__item-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.portfolio-page__item-title a {
  color: #f8fafc;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .portfolio-page__item-title {
    font-size: 1.125rem;
  }
}
.portfolio-page__item-description {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.portfolio-page__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}
.portfolio-page__tech-tag {
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 8px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  transition: all 0.3s ease;
}
.portfolio-page__tech-tag:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
  color: #3b82f6;
}
.portfolio-page__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 1rem;
}
.portfolio-page__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.portfolio-page__link i {
  font-size: 12px;
}
.portfolio-page__link--details {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #3b82f6;
}
.portfolio-page__link--details:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}
.portfolio-page__link--live {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: 1px solid transparent;
  color: #f8fafc;
}
.portfolio-page__link--live:hover {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.portfolio-page__load-more {
  text-align: center;
  margin-bottom: 4rem;
}
.portfolio-page__load-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
}
.portfolio-page__load-btn.hidden {
  display: none;
}
.portfolio-page__loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  color: #cbd5e1;
}
.portfolio-page__loader.active {
  display: flex;
}
.portfolio-page__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.portfolio-page__count {
  margin-top: 1rem;
  font-size: 14px;
  color: #94a3b8;
}
.portfolio-page__count span {
  color: #3b82f6;
  font-weight: 500;
}
.portfolio-page__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed rgba(30, 41, 59, 0.5);
  border-radius: 20px;
}
.portfolio-page__empty h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f8fafc;
  margin-bottom: 0.75rem;
}
.portfolio-page__empty p {
  color: #cbd5e1;
  font-size: 16px;
}
.portfolio-page__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .portfolio-page__cta {
    flex-direction: column;
    text-align: center;
  }
}
.portfolio-page__cta-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.portfolio-page__cta-content p {
  color: #cbd5e1;
  font-size: 16px;
  margin: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.floating-gradient--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  position: absolute;
  top: 10%;
  left: -10%;
  border-radius: 50%;
  filter: blur(80px);
}

.floating-gradient--bottom {
  top: auto;
  bottom: 10%;
  right: -10%;
  left: auto;
}

.portfolio-page__seo-text {
  margin-bottom: 4rem;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.portfolio-page__seo-content {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 20px;
  padding: 2.5rem;
}
@media (max-width: 480px) {
  .portfolio-page__seo-content {
    padding: 1.5rem;
  }
}

.portfolio-page__seo-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.portfolio-page__seo-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
}

.portfolio-page__seo-intro p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.portfolio-page__seo-full {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}
.portfolio-page__seo-full.is-expanded {
  display: block;
  animation: fadeInText 0.4s ease;
}
.portfolio-page__seo-full p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}
.portfolio-page__seo-full p:last-child {
  margin-bottom: 0;
}

.portfolio-page__seo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 10px 20px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 8px;
  color: #3b82f6;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-page__seo-toggle:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #3b82f6;
}
.portfolio-page__seo-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.portfolio-page__seo-toggle.is-expanded i {
  transform: rotate(180deg);
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */