@charset "UTF-8";

:root {
  --font-body: 'Sora', sans-serif;
}

:root {
  --black: #0b0f0e;
  --white: #f7f8f5;
  --background-color: #f0efee;
  --background2-color: #eceae5;
  --text-color: #1c1c1c;
  --muted-text-color: #6e6e6e;
  --accent-color: #8575D8;
  --surface-color: #ccc6db;
  --nav-background-color: #e0ded9;
  --nav-background-color2: #d2d0cb;
  --footer-background-color: #e0ded9;
  --footer-background-color2: #d2d0cb;

  color-scheme: light;
}

html[data-theme="dark"] {
  --black: #050706;
  --white: #f4f5f0;
  --background-color: #1a1a1a;
  --background2-color: #1d1d1d;
  --text-color: #ffffff;
  --muted-text-color: #bebebe;
  --accent-color: #7dB9ff;
  --surface-color: #6f5d90;
  --nav-background-color: #4B3a65;
  --nav-background-color2: #43345a;
  --footer-background-color: #4B3a65;
  --footer-background-color2: #43345a;

  color-scheme: dark;
}

html,
body {
  height: 100%;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.4s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent-color), black 25%);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
}

main {
  flex: 1;
}

html.theme-changing,
html.theme-changing body,
html.theme-changing main,
html.theme-changing header,
html.theme-changing footer,
html.theme-changing section,
html.theme-changing .topbar,
html.theme-changing .main-header,
html.theme-changing .mobile-nav-drawer,
html.theme-changing .footer-top,
html.theme-changing .footer-bottom,
html.theme-changing .hero,
html.theme-changing .services,
html.theme-changing .projects,
html.theme-changing .process,
html.theme-changing .pricing,
html.theme-changing .about,
html.theme-changing .testimonials,
html.theme-changing .faq,
html.theme-changing .contact,
html.theme-changing .service-card,
html.theme-changing .project-card,
html.theme-changing .process-card,
html.theme-changing .pricing-card,
html.theme-changing .pricing-note,
html.theme-changing .about-image,
html.theme-changing .about-points div,
html.theme-changing .testimonial-card,
html.theme-changing .faq-item,
html.theme-changing .contact-info,
html.theme-changing .contact-form,
html.theme-changing .footer-socials a,
html.theme-changing .tech-badge,
html.theme-changing .service-icon,
html.theme-changing .process-icon,
html.theme-changing input,
html.theme-changing textarea {
  transition:
    background 0.6s ease,
    background-color 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease !important;
}

html.theme-changing h1,
html.theme-changing h2,
html.theme-changing h3,
html.theme-changing h4,
html.theme-changing h5,
html.theme-changing h6,
html.theme-changing p,
html.theme-changing a,
html.theme-changing span:not(.sun):not(.moon),
html.theme-changing strong,
html.theme-changing small,
html.theme-changing li,
html.theme-changing cite,
html.theme-changing blockquote,
html.theme-changing button,
html.theme-changing input,
html.theme-changing textarea,
html.theme-changing label,
html.theme-changing i,
html.theme-changing .section-title span,
html.theme-changing .hero-tagline,
html.theme-changing .service-tags span,
html.theme-changing .project-meta span,
html.theme-changing .pricing-badge,
html.theme-changing .pricing-btn,
html.theme-changing .about-btn,
html.theme-changing .contact-detail i,
html.theme-changing .contact-label,
html.theme-changing .contact-form-tag,
html.theme-changing .footer-links a,
html.theme-changing .credits a {
  transition:
    color 0.6s ease,
    background-color 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease !important;
}

html.theme-changing *::before,
html.theme-changing *::after {
  transition:
    background 0.6s ease,
    background-color 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    opacity 0.6s ease !important;
}

html.theme-changing input::placeholder,
html.theme-changing textarea::placeholder {
  transition: color 0.6s ease !important;
}

html.theme-changing i {
  transition: color 0.6s ease !important;
}

body.preloader-active {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  touch-action: none;
}

html:has(body.preloader-active),
html:has(body.preloader-active) body,
body.preloader-active {
  background-color: var(--background-color) !important;
}

body.preloader-active,
body.preloader-active.index-page,
body.preloader-active.index-page .main {
  background-color: var(--background-color) !important;
}

@media (max-width: 1024px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100%;
    scroll-behavior: smooth !important;
  }

  body:not(.preloader-active).index-page,
  body:not(.preloader-active).index-page .main {
    background-color: var(--nav-background-color);
  }

  main section[id] {
    scroll-margin-top: 75px;
  }

  #hero {
    scroll-margin-top: 0;
  }

  #contact {
    scroll-margin-top: 75px;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}





#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  z-index: 99999;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader .preloader-inner {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  text-align: center;
  color: var(--text-color);
  transform: translateY(-10px);
}

#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 38px 38px;
  opacity: 0.35;
  pointer-events: none;
}

#preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--accent-color), transparent 50%),
    transparent
  );
  height: 160px;
  opacity: 0.15;
  animation: preloaderScan 2.4s linear infinite;
  pointer-events: none;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

#preloader .preloader-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

#preloader .preloader-code span {
  opacity: 0;
  animation: preloaderCodeIn 0.7s ease forwards;
}

#preloader .preloader-code span:nth-child(2) {
  animation-delay: 0.15s;
}

#preloader .preloader-code span:nth-child(3) {
  animation-delay: 0.3s;
}

#preloader h1 {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  animation: preloaderFadeUp 0.55s ease 0.2s forwards;
  opacity: 0;
}

#preloader p {
  margin: 0.6rem 0 1.8rem;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: preloaderFadeUp 0.55s ease 0.32s forwards;
  opacity: 0;
}

#preloader .preloader-line {
  width: 260px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-color), transparent 88%);
  overflow: hidden;
  animation: preloaderFadeUp 0.55s ease 0.42s forwards;
  opacity: 0;
}

#preloader .preloader-line span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  animation: preloaderLoading 1.15s ease-in-out infinite;
}

#preloader small {
  display: block;
  color: var(--muted-text-color);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  animation: preloaderFadeUp 0.55s ease 0.52s forwards;
  opacity: 0;
}

@keyframes preloaderCodeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }

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

@keyframes preloaderFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes preloaderLoading {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(240%);
  }
}

@keyframes preloaderScan {
  from {
    transform: translateY(-180px);
  }

  to {
    transform: translateY(100vh);
  }
}

@media (max-width: 1024px) {

  #preloader::before {
    display: none;
  }

  #preloader {
    background-color: var(--background-color) !important;
  }

}





.header {
  transition: 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.main {
  padding-top: 120px;
}

.index-page .main {
  padding-top: 0;
}

.header.header-shrink .topbar {
  height: 0;
}

.header.header-shrink .main-header {
  background-color: color-mix(in srgb, var(--nav-background-color), transparent 25%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.header.header-shrink:hover .topbar {
  height: 40px;
}

.header.header-shrink:hover .main-header {
  background-color: var(--nav-background-color);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header .container {
  height: 100%;
}

.header .topbar {
  height: 40px;
  transition: height 0.4s ease;
  overflow: hidden;
  background-color: var(--nav-background-color2);
}

.header .topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.30rem;
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.header .topbar i {
  transition: 0.4s ease;
}

.header .topbar-contact {
  gap: 1rem;
}

.header .topbar-contact a:hover {
  color: var(--accent-color);
}

.header .topbar-contact i:hover {
  transform: scale(1.2);
}

.header .topbar-socials {
  gap: 1rem;
}

.header .topbar-socials a {
  font-size: 1.05rem;
  transition: 0.4s ease;
}

.header .topbar-socials a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

.header .main-header {
  transition: 0.4s ease;
  background-color: var(--nav-background-color);
}

.header .header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 90px;
}

.header .logo {
  display: inline-block;
  width: fit-content;
  justify-self: start;
}

.header .logo img {
  max-height: 75px;
  width: auto;
  display: block;
  transition: 0.4s ease;
}

.header .logo:hover img {
  transform: scale(1.1);
}

.header .navmenu {
  justify-self: center;
  padding: 0;
}

.header .navmenu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .navmenu li {
  position: relative;
}

.header .navmenu a,
.navmenu a:focus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 0.9rem;
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.4s ease, transform 0.25s ease;
  text-decoration: none;
  will-change: transform;
}

.header .navmenu > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0.95rem;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--surface-color),
    var(--accent-color),
    var(--surface-color)
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
  opacity: 1;
}

.header .navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--accent-color);
}

.header .navmenu > ul > li > a:hover::after,
.header .navmenu > ul > li > a.active::after {
  width: 35px;
  animation: underlineFlow 1.2s linear infinite;
}

.header .navmenu > ul > li > a.active,
.header .navmenu > ul > li > a.active:focus {
  color: var(--accent-color);
}

.header .dropdown i {
  padding-right: 5px;
}

.header .dropdown ul {
  position: absolute;
  top: 112%;
  left: 50%;
  min-width: 170px;
  padding: 0.7rem 0;
  margin: 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--surface-color);
  border-radius: 15px;
  transition: 0.4s ease;
  z-index: 99;
}

.header .dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header .dropdown ul a {
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  justify-content: center;
}

.header .dropdown ul a::after {
  display: none;
}

.header .theme-switch {
  justify-self: end;
  position: relative;
  width: 64px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--accent-color);
}

.header .switch-bg {
  position: absolute;
  inset: 0;
}

.header .sun,
.header .moon {
  position: absolute;
  top: 50%;
  left: 72%;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.6s ease, opacity 0.6s ease, background-color 0.6s ease, box-shadow 0.6s ease;
}

.header .sun {
  background: radial-gradient(circle, #ffb347 20%, #ffcc33 90%);
  box-shadow: 0 0 16px #ffb347;
  opacity: 1;
}

.header .moon {
  background-color: #eeeeee;
  box-shadow: inset -6px 0 0 #b8b8b8;
  opacity: 0;
}

html[data-theme="dark"] .header .sun {
  left: 28%;
  opacity: 0;
}

html[data-theme="dark"] .header .moon {
  left: 28%;
  opacity: 1;
}

html[data-theme="dark"],
html[data-theme="dark"] body {
  background-color: var(--background2-color);
}

.mobile-burger,
.mobile-nav-drawer {
  display: none;
}

@keyframes underlineFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@media (max-width: 1024px) {

  .header {
    height: 88px;
    z-index: 9997;
  }

  .main {
    padding-top: 88px;
  }

  .header .topbar {
    display: none;
  }

  .header,
  .header.header-shrink,
  .header.header-shrink:hover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 9997;
  }

  .header.header-shrink .topbar,
  .header.header-shrink:hover .topbar {
    display: none;
    height: 0;
  }

  .header .main-header,
  .header.header-shrink .main-header,
  .header.header-shrink:hover .main-header {
    height: 88px;
    background-color: var(--nav-background-color);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .header .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr 64px;
    align-items: center;
    min-height: 88px;
    padding: 8px 16px 6px;
  }

  .mobile-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    justify-self: start;
    width: 24px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-burger span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: var(--text-color);
  }

  .header .logo {
    justify-self: center;
    align-self: center;
  }

  .header .logo img {
    max-height: 75px;
    width: auto;
    transform: none !important;
  }

  .header .navmenu {
    display: none;
  }

  .header .theme-switch {
    justify-self: end;
    align-self: center;
    width: 50px;
    height: 26px;
    margin: 0;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-color: color-mix(in srgb, var(--black), transparent 70%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9998;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  body.mobile-nav-active {
    overflow: hidden;
    touch-action: none;
    height: 100dvh;
  }

  body.preloader-active,
  body.mobile-nav-active {
    overflow: hidden;
    min-height: 100dvh;
  }

  body.mobile-nav-active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    width: 100%;
    inset: 0 0 -220px 0 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .mobile-nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 52vw;
    min-width: 230px;
    max-width: 300px;
    height: 100dvh;
    padding: 22px 0 16px;
    margin: 0;
    flex-direction: column;
    background-color: var(--nav-background-color);
    box-shadow: 18px 0 45px rgba(0, 0, 0, 0.22);
    transform: translateX(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10050;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    overflow: visible !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .mobile-nav-drawer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -220px;
    height: 240px;
    background-color: var(--nav-background-color);
    pointer-events: none;
  }

  body.mobile-nav-active .mobile-nav-drawer {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-close {
    width: fit-content;
    margin: 0 0 12px 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .mobile-nav-close:hover {
    color: var(--accent-color);
  }

  .mobile-nav-title {
    padding: 0 20px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: var(--text-color);
  }

  .mobile-nav-divider {
    height: 1px;
    margin: 0 0 0;
    background-color: color-mix(
      in srgb,
      var(--text-color),
      transparent 85%
    );
  }

  .mobile-nav-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav-drawer li {
    width: 100%;
  }

  .mobile-nav-drawer a {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--text-color),
      transparent 85%
    );
  }

  .mobile-nav-drawer a:hover,
  .mobile-nav-drawer a.active {
    color: var(--accent-color);
  }

  .mobile-nav-contact {
    margin-top: auto;
    padding: 12px 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: var(--text-color);
  }

  .mobile-nav-contact a {
    padding: 0.5rem 0;
    font-size: 0.74rem;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--text-color), transparent 85%);
    gap: 0.5rem;
  }

  .mobile-nav-contact span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-nav-socials {
    display: flex;
    gap: 0.8rem;
    padding-top: 0.3rem;
  }

  .mobile-nav-socials a {
    width: auto;
    padding: 0;
    border-bottom: 0;
    color: var(--text-color);
    font-size: 1rem;
  }

}





.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero .hero-video::-webkit-media-controls {
  display: none !important;
}

.hero .hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(132, 92, 255, 0.18), transparent 100%),
    linear-gradient(90deg, rgba(5, 8, 18, 0.82), rgba(18, 20, 28, 0.65), rgba(5, 8, 18, 0.78));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: -1;
}

.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 8rem;
}

.hero .hero-text {
  max-width: 800px;
}

.hero .hero-tagline {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.hero .hero-text h1 {
  margin: 0 0 1.2rem;
  font-size: 5rem;
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 600;
  color: var(--white);
}

.hero .hero-text p {
  max-width: 700px;
  color: var(--white);
  font-size: 1rem;
}

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

.hero .hero-buttons .btn {
  min-height: 50px;
  padding: 0 1.rem;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.4s ease;
}

.hero .hero-buttons .btn-primary {
  background-color: var(--accent-color);
  color: var(--text-color);
  border: none;
}

.hero .hero-buttons .btn-secondary {
  background-color: var(--nav-background-color);
  color: var(--text-color);
  border: none;
}

.hero .hero-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(50px);
}

.hero .profile-wrapper {
  position: relative;
  width: clamp(300px, 32vw, 430px);
  aspect-ratio: 1;
}

.hero .profile-wrapper::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.78;
  z-index: -1;
  transform: translateX(60px);
}

.hero .profile-wrapper > img {
  width: 110%;
  height: 110%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid;
  border-color: transparent;
  transition: 0.4s ease;
}

.hero .profile-wrapper img:hover {
  transform: scale(1.03);
}

.hero .profile-wrapper .tech-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.hero .tech-badge img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: 0.4s ease;
}

.hero .tech-badge img:hover {
  transform: scale(1.15);
}

.hero .badge-html {
  top: 2%;
  right: 20%;
  animation: heroBadgeFloat 3s ease-in-out 0s infinite;
}

.hero .badge-css {
  top: 20%;
  left: 2%;
  animation: heroBadgeFloat 3s ease-in-out 0.25s infinite;
}

.hero .badge-js {
  right: -15%;
  top: 40%;
  animation: heroBadgeFloat 3s ease-in-out 0.5s infinite;
}

.hero .badge-bootstrap {
  left: -2%;
  bottom: 25%;
  animation: heroBadgeFloat 3s ease-in-out 0.75s infinite;
}

.hero .badge-nodejs {
  right: -2%;
  bottom: 5%;
  animation: heroBadgeFloat 3s ease-in-out 1s infinite;
}

.hero .badge-postgresql {
  left: 40%;
  bottom: -8%;
  animation: heroBadgeFloat 3s ease-in-out 1.25s infinite;
}

.hero .scroll-down-indicator {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 1;
  pointer-events: none;
  animation: heroScrollFloat 1.6s ease-in-out infinite;
  transition: opacity 0.5s ease;
}

.hero .scroll-down-indicator.scroll-hidden {
  opacity: 0;
}

.hero .scroll-down-indicator::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  transform: rotate(45deg);
  color: var(--white);
}

@keyframes heroScrollFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes heroBadgeFloat {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1024px) {

  .hero {
    min-height: 100svh;
    padding: 7rem 0 3rem;
    align-items: center;
  }

  .hero .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero .hero-overlay {
    background:
      radial-gradient(circle at 50% 35%, rgba(132, 92, 255, 0.22), transparent 65%),
      linear-gradient(180deg, rgba(5, 8, 18, 0.88), rgba(12, 10, 26, 0.78), rgba(5, 8, 18, 0.92));
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.28);
  }

  .hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    text-align: center;
  }

  .hero .hero-text {
    max-width: 100%;
    order: 1;
  }

  .hero .hero-tagline {
    margin-bottom: 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero .hero-text h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 13vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
  }

  .hero .hero-text p {
    max-width: 330px;
    margin: 0 auto 1.4rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero .hero-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .hero .hero-buttons .btn {
    min-height: 45px;
    padding: 0 1rem;
    font-size: 0.72rem;
    border-radius: 12px;
    letter-spacing: 1.2px;
  }

  .hero .hero-buttons .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .hero .hero-visual {
    order: 2;
    transform: none;
  }

  .hero .profile-wrapper {
    width: min(68vw, 280px);
    margin: 0 auto;
  }

  .hero .profile-wrapper::before {
    inset: 8px;
    transform: translateX(28px);
  }

  .hero .profile-wrapper > img {
    width: 105%;
    height: 105%;
    border-width: 5px;
  }

  .hero .profile-wrapper img:hover {
    transform: none;
  }

  .hero .profile-wrapper .tech-badge {
    width: 42px;
    height: 42px;
  }

  .hero .tech-badge img {
    width: 25px;
    height: 25px;
  }

  .hero .tech-badge img:hover {
    transform: none;
  }

  .hero .badge-js {
    right: -8%;
  }

  .hero .badge-bootstrap {
    left: -6%;
  }

  .hero .badge-php {
    right: -3%;
  }

  .hero .badge-mysql {
    bottom: -6%;
  }

  .hero .scroll-down-indicator {
    display: none;
  }

}





.section-title {
  text-align: center;
}

.section-title span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--text-color);
  font-size: 50px;
  font-weight: 400;
}

@media (max-width: 1024px) {

  .section-title {
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
  }

  .section-title span {
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
  }

  .section-title h2 {
    margin: 0;
    font-size: 2.1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

}





.services {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background-color);
}

.services .services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.9fr;
  align-items: stretch;
  gap: 1.4rem;
  padding-top: 100px;
}

.services .service-card {
  position: relative;
  min-height: 410px;
  padding: 2rem;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.4s ease;
}

.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .service-card-wrapper {
  height: 100%;
}

.services .service-card-wrapper .service-card {
  height: 100%;
}

.services .featured-service {
  margin-top: -1.7rem;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .featured-service:hover {
  transform: translateY(-20px);
}

.services .service-icon {
  position: relative;
  width: 65px;
  height: 65px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: processIconPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

.services .service-card h3 {
  position: relative;
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: 1.45rem;
  font-weight: 600;
}

.services .featured-service h3 {
  font-size: 1.75rem;
}

.services .service-card p {
  position: relative;
  margin: 0 0 1.7rem;
  color: var(--muted-text-color);
  font-size: 0.98rem;
  line-height: 1.75;
}

.services .featured-service p {
  font-size: 1.05rem;
}

.services .service-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.services .service-tags span {
  padding: 0.5rem 0.75rem;
  border: 1px solid;
  border-color: var(--text-color);
  border-radius: 999px;
  color: var(--text-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

@keyframes processIconPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@media (max-width: 1024px) {

  .services {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 2.1rem;
  }

  .services .service-card-wrapper {
    height: auto;
  }

  .services .service-card-wrapper:nth-child(2) {
    grid-column: 1 / -1;
    order: 1;
  }

  .services .service-card-wrapper:nth-child(1) {
    order: 2;
  }

  .services .service-card-wrapper:nth-child(3) {
    order: 3;
  }

  .services .service-card {
    min-height: auto;
    height: 100%;
    padding: 1.3rem 1rem;
    border-radius: 15px;
    text-align: center;
  }

  .services .featured-service {
    margin-top: 0;
    transform: none;
    padding: 1.4rem 1.4rem;
  }

  .services .service-card:hover,
  .services .featured-service:hover {
    transform: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .services .service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
  }

  .services .featured-service .service-icon {
    width: 62px;
    height: 62px;
  }

  .services .service-icon img {
    width: 34px;
    height: 34px;
  }

  .services .featured-service .service-icon img {
    width: 38px;
    height: 38px;
  }

  .services .service-card h3,
  .services .featured-service h3 {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .services .featured-service h3 {
    font-size: 1.35rem;
  }

  .services .service-card p,
  .services .featured-service p {
    margin: 0 auto 1.2rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .services .featured-service p {
    max-width: 310px;
    font-size: 0.9rem;
  }

  .services .service-tags {
    justify-content: center;
    gap: 0.5rem;
  }

  .services .service-tags span {
    padding: 0.4rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 0.6px;
  }

  .services .featured-service .service-tags span {
    font-size: 0.66rem;
  }

  .services .service-card-wrapper:nth-child(1) .service-tags,
  .services .service-card-wrapper:nth-child(3) .service-tags {
    gap: 0.7rem;
  }

}





.projects {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background2-color);
}

.projects .projects-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  padding-top: 50px;
}

.projects .project-card {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: 15px;
  background: var(--surface-color);
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.projects .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.projects .project-card-wrapper {
  height: 100%;
}

.projects .project-card-wrapper .project-card {
  height: 100%;
}

.projects .featured-project {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.projects .featured-project .project-content {
  margin-top: auto;
}

.projects .featured-project-wrapper {
  grid-row: span 2;
}

.projects .featured-project-wrapper .project-card {
  height: 100%;
}

.projects .project-image {
  height: 260px;
  overflow: hidden;
  transition: 0.4s ease;
}

.projects .featured-project .project-image {
  height: 930px;
}

.projects .project-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.4s ease;
}

.projects .project-card:hover .project-video {
  transform: scale(1.05);
}

.projects .project-content {
  padding: 1.8rem;
}

.projects .project-content span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects .project-content h3 {
  margin: 0 0 0.8rem;
  color: var(--text-color);
  font-size: 1.45rem;
  font-weight: 800;
}

.projects .featured-project h3 {
  font-size: 2rem;
}

.projects .project-content p {
  margin: 0;
  color: var(--muted-text-color);
  font-size: 0.98rem;
  line-height: 1.7;
}

.projects .project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.projects .project-meta span {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--text-color);
  border-radius: 999px;
  color: var(--text-color);
  font-size: 0.76rem;
  font-weight: 600;
}

@media (max-width: 1024px) {

  .projects {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-top: 2.2rem;
  }

  .projects .featured-project-wrapper,
  .projects .featured-project {
    grid-row: auto;
  }

  .projects .project-card-wrapper,
  .projects .project-card-wrapper .project-card {
    height: auto;
  }

  .projects .project-card {
    min-height: auto;
    border-radius: 15px;
  }

  .projects .project-card:hover {
    transform: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .projects .project-card:hover .project-video {
    transform: none;
  }

  .projects .project-image,
  .projects .featured-project .project-image {
    height: 260px;
  }

  .projects .project-video {
    transform: none;
  }

  .projects .project-content {
    padding: 0.8rem 1.5rem;
    text-align: center;
  }

  .projects .project-content span {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .projects .project-content h3,
  .projects .featured-project h3 {
    margin-bottom: 0.8rem;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .projects .project-content p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .projects .project-meta {
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.3rem;
  }

  .projects .project-meta span {
    padding: 0.42rem 0.62rem;
    font-size: 0.62rem;
    letter-spacing: 0.7px;
  }

}






.process {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background-color);
}

.process .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding-top: 50px;
}

.process .process-card {
  position: relative;
  padding: 1.5rem 1.6rem 0.5rem;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.4s ease;
  overflow: hidden;
}

.process .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.process .process-card-wrapper {
  height: 100%;
}

.process .process-card-wrapper .process-card {
  height: 100%;
}

.process .process-number {
  position: absolute;
  top: 1.4rem;
  right: 1.7rem;
  color: var(--accent-color);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.5;
}

.process .process-icon {
  position: relative;
  width: 65px;
  height: 65px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process .process-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  animation: processIconPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

.process .process-card h3 {
  position: relative;
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: 1.45rem;
  font-weight: 600;
}

.process .process-card p {
  position: relative;
  color: var(--muted-text-color);
  font-size: 0.98rem;
  line-height: 1.75;
}

@keyframes processIconPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@media (max-width: 1024px) {

  .process {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .process .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 2.2rem;
  }

  .process .process-card-wrapper {
    height: auto;
  }

  .process .process-card {
    min-height: 245px;
    height: 100%;
    padding: 1.45rem 1rem 0.5rem;
    border-radius: 15px;
  }

  .process .process-card:hover {
    transform: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .process .process-number {
    top: 0.9rem;
    right: 1rem;
    font-size: 3.2rem;
    opacity: 0.45;
  }

  .process .process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.1rem;
  }

  .process .process-icon img {
    width: 30px;
    height: 30px;
  }

  .process .process-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.25;
  }

  .process .process-card p {
    font-size: 0.76rem;
    line-height: 1.65;
  }

}





.pricing {
  padding-top: 40px;
  padding-bottom: 50px;
  background: var(--background2-color);
}

.pricing .pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
  align-items: end;
  gap: 1.4rem;
  padding-top: 80px;
}

.pricing .pricing-card {
  position: relative;
  min-height: 560px;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  background: var(--surface-color);
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricing .pricing-card-wrapper {
  height: 100%;
  display: flex;
}

.pricing .pricing-card-wrapper .pricing-card {
  width: 100%;
}

.pricing .featured-pricing {
  min-height: 720px;
  z-index: 2;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-30px);
}

.pricing .featured-pricing:hover {
  transform: translateY(-40px);
}

.pricing .pricing-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 1rem;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing .pricing-header {
  max-width: 320px;
  margin: 2.2rem auto 0;
}

.pricing .pricing-header h3 {
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: 1.45rem;
  font-weight: 600;
}

.pricing .featured-pricing h3 {
  font-size: 1.75rem;
}

.pricing .pricing-header p {
  margin: 0;
  color: var(--muted-text-color);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
}

.pricing .pricing-price {
  margin: 2.2rem auto;
  padding: 1.3rem 0;
  border-top: 1px solid color-mix(in srgb, var(--text-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--text-color), transparent 90%);
}

.pricing .pricing-price span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing .pricing-price h4 {
  margin: 0;
  color: var(--text-color);
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.pricing .pricing-card ul {
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 310px;
  list-style: none;
}

.pricing .pricing-card li {
  margin-bottom: 1rem;
  color: var(--muted-text-color);
  font-size: 0.96rem;
  line-height: 1.4;
}

.pricing .pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.pricing .pricing-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.pricing .pricing-note {
  max-width: 850px;
  margin: 3rem auto 0;
  padding: 1.4rem 1.8rem;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  text-align: center;
}

.pricing .pricing-note p {
  margin: 0;
  color: var(--muted-text-color);
  font-size: 0.98rem;
  line-height: 1.75;
}

@media (max-width: 1024px) {

  .pricing {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .pricing .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-top: 2.2rem;
  }

  .pricing .pricing-card-wrapper {
    height: auto;
    display: block;
  }

  .pricing .pricing-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
    border-radius: 15px;
  }

  .pricing .featured-pricing {
    min-height: auto;
    transform: none;
  }

  .pricing .pricing-card:hover,
  .pricing .featured-pricing:hover {
    transform: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .pricing .pricing-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1rem;
    font-size: 0.65rem;
  }

  .pricing .pricing-header {
    margin: 0 auto;
  }

  .pricing .pricing-header h3,
  .pricing .featured-pricing h3 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .pricing .pricing-header p {
    max-width: 310px;
    margin: 0 auto;
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .pricing .pricing-price {
    margin: 1.3rem auto;
    padding: 1rem 0;
  }

  .pricing .pricing-price span {
    font-size: 0.7rem;
  }

  .pricing .pricing-price h4 {
    font-size: 2.8rem;
  }

  .pricing .pricing-card ul {
    margin: 0 auto 1.5rem;
  }

  .pricing .pricing-card li {
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
  }

  .pricing .pricing-btn {
    min-height: 46px;
    border-radius: 15px;
    font-size: 0.72rem;
  }

  .pricing .pricing-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .pricing .pricing-note {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 15px;
  }

  .pricing .pricing-note p {
    font-size: 0.78rem;
    line-height: 1.65;
  }

}





.about {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background-color);
}

.about .about-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 4rem;
  padding-top: 50px;
}

.about .about-image-wrapper {
  height: 560px;
  border-radius: 15px;
}

.about .about-image {
  position: relative;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: box-shadow 0.4s ease;
}

.about .about-image:hover {
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about .about-image:hover img {
  transform: scale(1.04);
}

.about .about-text {
  max-width: 680px;
}

.about .about-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about .about-text h3 {
  margin: 0 0 1.4rem;
  color: var(--text-color);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.1;
}

.about .about-text p {
  margin: 0 0 1.2rem;
  color: var(--muted-text-color);
  font-size: 1rem;
  line-height: 1.8;
}

.about .about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.about .about-points div {
  padding: 1rem;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.4s ease;
}

.about .about-points div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
}

.about .about-points span {
  color: var(--muted-text-color);
  font-size: 0.85rem;
  font-weight: 400;
}

.about .about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.about .about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 1024px) {

  .about {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .about .about-content {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding-top: 2.2rem;
    text-align: center;
  }

  .about .about-text {
    order: 1;
    max-width: 100%;
  }

  .about .about-label {
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .about .about-text h3 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .about .about-text p {
    max-width: 350px;
    margin: 0 auto 1rem;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .about .about-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin: 1.5rem 0;
  }

  .about .about-points div {
    padding: 0.85rem 0.45rem;
    border-radius: 15px;
  }

  .about .about-points div:hover {
    transform: none !important;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .about .about-points strong {
    font-size: 0.72rem;
  }

  .about .about-points span {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .about .about-image-wrapper {
    display: none;
  }

  .about .about-btn {
    min-height: 46px;
    padding: 0 1.3rem;
    border-radius: 15px;
    font-size: 0.72rem;
  }

  .about .about-btn:hover {
    transform: none;
    box-shadow: none;
  }

}





.testimonials {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--background2-color);
}

.testimonials .testimonials-slider {
  padding-top: 50px;
  padding-bottom: 55px;
}

.testimonials .swiper {
  width: 100%;
  overflow: hidden;
}

.testimonials .swiper-wrapper {
  align-items: stretch;
}

.testimonials .swiper-slide {
  height: auto;
}

.testimonials .testimonial-card {
  height: 100%;
  min-height: 360px;
  padding: 2.4rem 2rem;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 90%);
  text-align: center;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.testimonials .testimonial-card p {
  max-width: 310px;
  margin: 0 auto 2rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  flex-grow: 1;
}

.testimonials .testimonial-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials .testimonial-user img {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-user h3 {
  margin: 0 0 0.35rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
}

.testimonials .testimonial-user span {
  color: var(--muted-text-color);
  font-size: 0.9rem;
  font-weight: 400;
}

.testimonials .swiper-pagination {
  bottom: 0;
}

.testimonials .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--muted-text-color);
  opacity: 0.35;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

@media (max-width: 1024px) {

  .testimonials {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .testimonials .testimonials-slider {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .testimonials .testimonial-card {
    min-height: 330px;
    padding: 1.8rem 1.4rem;
    border-radius: 15px;
  }

  .testimonials .testimonial-card:hover {
    transform: none;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .testimonials .testimonial-card p {
    max-width: 310px;
    margin-bottom: 1.6rem;
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .testimonials .testimonial-user img {
    width: 78px;
    height: 78px;
    margin-bottom: 0.9rem;
  }

  .testimonials .testimonial-user h3 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-user span {
    font-size: 0.78rem;
  }

}





.faq {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background-color);
}

.faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 1rem 1.4rem;
  padding-top: 50px;
}

.faq .faq-item {
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  overflow: hidden;
  transition: 0.4s ease;
}

.faq .faq-item:hover {
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.faq .faq-question {
  width: 100%;
  min-height: 72px;
  padding: 0 1.5rem;
  border: 0;
  background: transparent;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  text-align: center;
  transition: 0.4s ease;
}

.faq .faq-question span {
  font-size: 1rem;
  font-weight: 600;
  transition: 0.4s ease;
}

.faq .faq-question span:hover {
  color: var(--accent-color);
}

.faq .faq-question i {
  color: var(--accent-color);
  font-size: 1rem;
  transition: 0.4s ease;
}

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq .faq-answer p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq .faq-item.active {
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.faq .faq-item.active .faq-question {
  color: var(--accent-color);
}

.faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq .faq-item.active .faq-answer {
  max-height: 220px;
}

@media (max-width: 1024px) {

  .faq {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-top: 2.2rem;
  }

  .faq .faq-item {
    border-radius: 15px;
  }

  .faq .faq-item:hover,
  .faq .faq-item.active {
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .faq .faq-question {
    min-height: 62px;
    padding: 0 1rem;
    gap: 0.75rem;
    text-align: left;
  }

  .faq .faq-question span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .faq .faq-question span:hover {
    color: var(--text-color);
  }

  .faq .faq-question i {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .faq .faq-answer p {
    padding: 0 1rem 1.1rem;
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .faq .faq-item.active .faq-answer {
    max-height: 280px;
  }

}





.contact {
  padding-top: 40px;
  padding-bottom: 60px;
  background: var(--background2-color);
}

.contact .contact-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding-top: 50px;
}

.contact .contact-info,
.contact .contact-form {
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .contact-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact .contact-info h3 {
  margin: 0 0 1.2rem;
  color: var(--text-color);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
}

.contact .contact-info p {
  margin: 0;
  color: var(--muted-text-color);
  font-size: 1rem;
  line-height: 1.8;
}

.contact .contact-details {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.contact .contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact .contact-detail i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact .contact-detail span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact .contact-detail a,
.contact .contact-detail p {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.98rem;
}

.contact .contact-message {
  max-height: 0;
  margin-top: 0;
  padding: 0 1.2rem;
  border-radius: 15px;
  opacity: 0;
  overflow: hidden;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: 0.4s ease;
}

.contact .contact-message.show {
  max-height: 140px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  opacity: 1;
}

.contact .contact-message.error {
  background: #fde3d8;
  color: #d93000;
}

.contact .contact-message.sending {
  background: #f3eee8;
  color: #b86b2d;
}

.contact .contact-message.success {
  background: #e2f3df;
  color: #0c9b34;
}

.contact .contact-form {
  padding: 2.5rem;
}

.contact .contact-form-tag {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact .contact-form h3 {
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 600;
}

.contact .contact-form p {
  margin-bottom: 2rem;
  color: var(--muted-text-color);
  line-height: 1.7;
}

.contact .contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact .contact-form input,
.contact .contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  border-radius: 15px;
  background-color:  color-mix(in srgb, var(--surface-color), black 10%);
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  border: 2px solid transparent;
  transition: 0.4s ease;
}

.contact .contact-form input:hover,
.contact .contact-form textarea:hover {
  border-color: var(--accent-color);
}

.contact .contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: var(--muted-text-color);
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

.contact .contact-form button {
  display: block;
  margin: 0 auto;
  min-width: 220px;
  min-height: 55px;
  border: 0;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease;
}

.contact .contact-form button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 1024px) {

  .contact {
    padding-top: 25px;
    padding-bottom: 35px;
  }

  .contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 2.2rem;
  }

  .contact .contact-form {
    order: 1;
    padding: 1.5rem 1.2rem;
    border-radius: 15px;
    text-align: center;
  }

  .contact .contact-info {
    order: 2;
    padding: 1.5rem 1.2rem;
    border-radius: 15px;
    text-align: center;
  }

  .contact .contact-form-tag,
  .contact .contact-label {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .contact .contact-form h3,
  .contact .contact-info h3 {
    font-size: 1.65rem;
    line-height: 1.15;
  }

  .contact .contact-form p,
  .contact .contact-info p {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .contact .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact .contact-form input,
  .contact .contact-form textarea {
    margin-bottom: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 15px;
    font-size: 0.82rem;
    text-align: center;
  }

  .contact .contact-form input::placeholder,
  .contact .contact-form textarea::placeholder {
    text-align: center;
  }

  .contact .contact-form input:hover,
  .contact .contact-form textarea:hover {
    border-color: transparent;
  }

  .contact .contact-form textarea {
    min-height: 160px;
  }

  .contact .contact-form button {
    min-width: 100%;
    min-height: 48px;
    border-radius: 15px;
    font-size: 0.72rem;
  }

  .contact .contact-form button:hover {
    transform: none;
    box-shadow: none;
  }

  .contact .contact-details {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .contact .contact-detail {
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
  }

  .contact .contact-detail i {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact .contact-detail span {
    font-size: 0.65rem;
  }

  .contact .contact-detail a,
  .contact .contact-detail p {
    font-size: 0.82rem;
  }

  .contact .contact-message.show {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

}





.footer {
  background: var(--footer-background-color);
}

.footer .footer-top {
  padding: 3rem 0;
  background: var(--footer-background-color);
}

.footer .footer-content {
  display: grid;
  grid-template-columns: 1.6fr 0.55fr 0.55fr 0.45fr;
  gap: 4rem;
  align-items: start;
}

.footer .footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer .footer-logo {
  flex-shrink: 0;
}

.footer .footer-logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  transition: 0.4s ease;
}

.footer .footer-logo:hover img {
  transform: scale(1.08);
}

.footer .footer-links {
  position: relative;
  left: 70px;
}

.footer .footer-links h4,
.footer .footer-socials h4 {
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.footer .footer-links h4::after,
.footer .footer-socials h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 10px;
}

.footer .footer-brand h4 {
  margin: 0 0 1rem;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
}

.footer .footer-brand p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer .footer-links ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .footer-links a {
  color: var(--muted-text-color);
  font-size: 0.92rem;
  text-decoration: none;
  transition: 0.4s ease;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
}

.footer .footer-socials {
  justify-self: end;
  text-align: center;
}

.footer .footer-socials div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer .footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.4s ease;
}

.footer .footer-socials a:hover {
  background: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.footer .footer-bottom {
  padding: 1.2rem 0;
  background: var(--footer-background-color2);
  text-align: center;
}

.footer .footer-bottom p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.85rem;
}

.footer .credits {
  margin-top: 0.35rem;
}

.footer .credits span {
  color: var(--muted-text-color);
}

.footer .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 1024px) {

  .footer .footer-top {
    padding: 2rem 0 1.8rem;
  }

  .footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .footer .footer-logo img {
    width: 80px;
    height: 80px;
  }

  .footer .footer-logo:hover img {
    transform: none;
  }

  .footer .footer-brand h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .footer .footer-brand p {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .footer .footer-links {
    position: static;
    left: auto;
  }

  .footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
    align-items: start;
  }

  .footer .footer-brand {
    grid-column: 1 / -1;
  }

  .footer .footer-links,
  .footer .footer-socials {
    text-align: center;
    justify-self: center;
  }

  .footer .footer-links h4,
  .footer .footer-socials h4 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    font-size: 0.78rem;
  }

  .footer .footer-links h4::after,
  .footer .footer-socials h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
  }

  .footer .footer-links ul {
    gap: 0.6rem;
  }

  .footer .footer-links a {
    font-size: 0.68rem;
  }

  .footer .footer-socials div {
    gap: 0.6rem;
  }

  .footer .footer-socials a {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .footer .footer-socials a:hover {
    transform: none;
    box-shadow: none;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .footer .footer-bottom {
    padding: 1rem 0;
  }

  .footer .footer-bottom p {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .footer .credits {
    margin-top: 0.3rem;
  }

}