html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body {
  background: #f6f6f4;
  color: #101828;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.15;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section--tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.script {
  font-family: "Vast Shadow", Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #14b8a6;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #14b8a6;
  border-radius: 2px;
}

.text-orange {
  color: #14b8a6;
}

.text-muted {
  color: #667085;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head .script {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  color: inherit;
  margin-top: 0.6rem;
}
.section-head .script--lg {
  font-size: clamp(2.6rem, 6vw, 4rem);
}
.section-head p {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #667085;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill svg {
  width: 1.1em;
  height: 1.1em;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill--orange {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(245, 121, 32, 0.55);
}
.pill--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(245, 121, 32, 0.7);
}
.pill--orange:hover svg {
  transform: translate(3px, -3px);
}
.pill--ghost {
  border: 1.5px solid rgba(16, 24, 40, 0.25);
  color: #101828;
  background: transparent;
}
.pill--ghost:hover {
  border-color: #14b8a6;
  color: #14b8a6;
}
.pill--white {
  background: #fff;
  color: #101828;
}
.pill--white:hover {
  background: #14b8a6;
  color: #fff;
}

.nav {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0.55rem 0.6rem 0.55rem 1.6rem;
  background: rgba(23, 23, 23, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 24px 48px -24px rgba(16, 24, 40, 0.45);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.4s ease;
}
.nav-inner.scrolled {
  box-shadow: 0 20px 44px -20px rgba(16, 24, 40, 0.6);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.nav-brand .nav-dot {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
}
.nav-links a {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.current {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  font-weight: 600;
}

.nav-lang {
  margin-left: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}
.nav-lang:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(245, 121, 32, 0.7);
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.menu-btn .btn-line {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.menu-btn.close .btn-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.close .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(7rem, 12vh, 9rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 85% -10%, rgba(253, 133, 58, 0.14), transparent 60%), radial-gradient(700px 500px at -10% 110%, rgba(253, 133, 58, 0.1), transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  box-shadow: 0 10px 24px -16px rgba(16, 24, 40, 0.25);
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #101828;
}
.hero-badge .hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.18);
}

.hero-title {
  font-size: clamp(3rem, 6.6vw, 4.6rem);
  color: #101828;
  margin: 1.2rem 0 0.4rem;
}
.hero-title .accent {
  background: linear-gradient(120deg, #0d9488, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-role {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #101828;
  margin-bottom: 1.1rem;
}

.hero-sub {
  max-width: 520px;
  color: #667085;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-socials {
  display: flex;
  gap: 0.8rem;
}
.hero-socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #e4e7ec;
  background: #ffffff;
  color: #101828;
  font-size: 1.15rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-socials a:hover {
  border-color: #14b8a6;
  color: #14b8a6;
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 520px);
}
.hero-visual .blob {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 45%), linear-gradient(140deg, #2dd4bf, #0d9488);
  border-radius: 48% 52% 44% 56%/55% 46% 54% 45%;
  animation: blob-morph 9s ease-in-out infinite;
  z-index: 0;
}
.hero-visual .hero-photo {
  position: relative;
  z-index: 1;
  width: 76%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 48% 52% 44% 56%/55% 46% 54% 45%;
  border: 8px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 40px 80px -40px rgba(16, 24, 40, 0.5);
}

.float-card {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  box-shadow: 0 26px 50px -22px rgba(16, 24, 40, 0.45);
  animation: float 6s ease-in-out infinite;
}
.float-card--orange {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  top: 7%;
  right: -2%;
}
.float-card--orange svg {
  width: 1.4em;
  height: 1.4em;
}
.float-card--stars {
  top: -4%;
  left: -4%;
  padding: 1rem 1.4rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.float-card--stars .stars-num {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #101828;
  line-height: 1;
}
.float-card--stars .stars-label {
  font-size: 0.78rem;
  color: #667085;
}
.float-card--stars .stars-label .stars {
  color: #14b8a6;
  font-size: 0.72rem;
  letter-spacing: 1px;
}
.float-card--years {
  bottom: 6%;
  left: -6%;
  padding: 1rem 1.4rem;
  background: #171717;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.float-card--years .years-num {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
}
.float-card--years .years-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 48% 52% 44% 56%/55% 46% 54% 45%;
  }
  50% {
    border-radius: 55% 45% 60% 40%/45% 58% 42% 55%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.panel {
  background: #171717;
  color: #fcfcfd;
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}
.panel--footer {
  background: #272727;
  border-radius: 48px 48px 0 0;
}

.panel-inner {
  max-width: 1240px;
  margin-inline: auto;
}

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

.service-card {
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 133, 58, 0.16), transparent 70%);
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 133, 58, 0.4);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.service-card:hover::after {
  transform: scale(1.35);
}
.service-card .service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(253, 133, 58, 0.22), rgba(251, 101, 20, 0.14));
  color: #2dd4bf;
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
}
.service-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p {
  position: relative;
  z-index: 1;
  color: #98a2b3;
  font-size: 0.98rem;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.4rem;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.16);
}
.dots span:nth-child(4) {
  width: 44px;
  background: #171717;
}
.dots span.dots--dark {
  background: rgba(255, 255, 255, 0.18);
}
.dots span.dots--dark:nth-child(4) {
  background: #0d9488;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2dd4bf, rgba(16, 24, 40, 0.08));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column dense;
  gap: 3rem;
  padding: 1.4rem 0;
}
.timeline-item:nth-child(odd) .timeline-body {
  grid-column: 1/2;
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-meta {
  grid-column: 2/3;
}
.timeline-item:nth-child(even) .timeline-body {
  grid-column: 2/3;
}
.timeline-item:nth-child(even) .timeline-meta {
  grid-column: 1/2;
  text-align: right;
}
.timeline-item:nth-child(odd) .tl-period {
  align-self: flex-start;
  margin-left: -1.25rem;
}
.timeline-item:nth-child(even) .tl-period {
  align-self: flex-end;
  margin-right: -1.25rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2.2rem;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #14b8a6;
  border: 4px solid #f6f6f4;
  box-shadow: 0 0 0 3px rgba(245, 121, 32, 0.35);
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.timeline-meta .tl-period {
  display: inline-flex;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: #f2f4f7;
  color: #101828;
  font-weight: 600;
  font-size: 0.85rem;
}
.timeline-meta .tl-place {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #101828;
}

.timeline-body .tl-role {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #14b8a6;
  margin-bottom: 0.45rem;
}
.timeline-body p {
  color: #667085;
  font-size: 0.98rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.why-visual .why-photo {
  width: min(100%, 440px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(0.15) contrast(1.05);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.why-visual .why-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: #101828;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}
.why-visual .why-chip i {
  color: #14b8a6;
}
.why-visual .why-chip--top {
  top: 6%;
  left: -4%;
  animation: float 6s ease-in-out infinite;
}
.why-visual .why-chip--bottom {
  bottom: 6%;
  right: -4%;
  animation: float 7s ease-in-out 1s infinite;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}
.why-stats .stat {
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.why-stats .stat .stat-num {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #2dd4bf;
  line-height: 1;
}
.why-stats .stat .stat-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #98a2b3;
}

.why-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700;
  margin: 0.8rem 0 1.1rem;
}
.why-content > p {
  color: #98a2b3;
  font-size: 1.05rem;
}

.portfolio .slider-wrapper {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  box-shadow: 0 40px 80px -48px rgba(16, 24, 40, 0.35);
}
.portfolio .slider-container {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.6, 0, 0.2, 1);
}
.portfolio .slider-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.portfolio .slider-slide.has-carousel {
  grid-template-columns: 2fr 1fr;
}
.portfolio .slide-media,
.portfolio .slide-image {
  position: relative;
  min-height: 460px;
  background: #171717;
  overflow: hidden;
}
.portfolio .slide-media img,
.portfolio .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.portfolio .slide-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 2rem);
}
.portfolio .slide-info .slide-title {
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #101828;
  margin: 1rem 0 0.5rem;
}
.portfolio .slide-info .slide-title a:hover {
  color: #14b8a6;
}
.portfolio .slide-info > p {
  color: #667085;
  font-size: 0.98rem;
  margin-bottom: 1.3rem;
}
.portfolio .slide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.portfolio .slide-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid #e4e7ec;
  font-weight: 600;
  font-size: 0.9rem;
  color: #101828;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio .slide-links a:hover {
  border-color: #14b8a6;
  color: #14b8a6;
  background: rgba(253, 133, 58, 0.06);
}
.portfolio .slide-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.portfolio .slide-tech img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.portfolio .slide-tech i {
  height: 34px;
  font-size: 34px;
  line-height: 1;
}
.portfolio .slide-tech svg {
  height: 34px;
  width: auto;
}

.portfolio .slide-video-grid {
  position: relative;
  min-height: 460px;
  background: #171717;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  justify-content: center;
  align-content: center;
  box-sizing: border-box;
}

.video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: calc((100% - 1.5rem) / 3);
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-card svg {
  width: 34px;
  height: 34px;
  color: #14b8a6;
  transition: transform 0.3s ease;
}
.video-card .video-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  opacity: 0.85;
}
.video-card:hover {
  border-color: #14b8a6;
  background: rgba(253, 133, 58, 0.1);
  transform: translateY(-3px);
}
.video-card:hover svg {
  transform: scale(1.12);
}

@media (max-width: 640px) {
  .video-card {
    width: calc((100% - 0.75rem) / 2);
  }
}
.project-badge {
  align-self: flex-start;
  display: inline-flex;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.project-badge.orange {
  background: rgba(245, 121, 32, 0.12);
  color: #14b8a6;
}
.project-badge.purple {
  background: rgba(109, 66, 156, 0.12);
  color: #6d429c;
}
.project-badge.blue {
  background: rgba(1, 117, 194, 0.12);
  color: #0175c2;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}

.slider-nav {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e4e7ec;
  color: #101828;
  font-size: 1.2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-nav:hover {
  background: #171717;
  color: #fff;
  border-color: #171717;
}
.slider-nav svg {
  width: 22px;
  height: 22px;
}

.slider-nav-group {
  display: flex;
  gap: 0.8rem;
}

.slider-pagination {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.slider-pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e4e7ec;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-pagination .dot.active {
  width: 44px;
  background: #14b8a6;
}

.image-carousel {
  position: relative;
  min-height: 460px;
  background: #171717;
  overflow: hidden;
}

.image-carousel-container {
  position: absolute;
  inset: 0;
}

.carousel-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.carousel-image.active {
  opacity: 1;
  visibility: visible;
}

.slide-image img {
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.65);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-nav:hover {
  background: #14b8a6;
}
.carousel-nav svg {
  width: 20px;
  height: 20px;
}
.carousel-nav.carousel-prev {
  left: 1rem;
}
.carousel-nav.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}
.carousel-indicators .indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-indicators .indicator.active {
  background: #fff;
  width: 26px;
  border-radius: 999px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cert-grid .cert-card {
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.cert-grid .cert-card h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}
.cert-grid .cert-card h4 i {
  color: #14b8a6;
  margin-right: 0.5rem;
}
.cert-grid .cert-card .cert-meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.cert-grid .cert-card .cert-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  flex: 1;
}
.cert-grid .cert-card .cert-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.4rem;
  flex: 1;
}
.cert-grid .cert-card .cert-items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.cert-grid .cert-card .cert-items li a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cert-grid .cert-card .cert-items li a:hover {
  color: #14b8a6;
}
.cert-grid .cert-card .cert-items li .cert-item-year {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.cert-grid .cert-card .cert-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #14b8a6;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.4rem;
}
.cert-grid .cert-card .cert-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.skills-grid .skill-card {
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 1.5rem 1.6rem;
}
.skills-grid .skill-card h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.skills-grid .skill-card .skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skills-grid .skill-card .skill-items span {
  padding: 0.4rem 0.9rem;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-card {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta-card .script {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #101828;
  margin-top: 0.7rem;
}
.cta-card p {
  max-width: 560px;
  margin: 1.1rem auto 2.2rem;
  color: #667085;
}

.cta-form {
  display: flex;
  gap: 0.8rem;
  max-width: 560px;
  margin-inline: auto;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  box-shadow: 0 24px 50px -30px rgba(16, 24, 40, 0.4);
}
.cta-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.9rem 1.3rem;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  font-size: 1rem;
  color: #101828;
}
.cta-form input::placeholder {
  color: #98a2b3;
}
.cta-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #fff;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-form button:hover {
  transform: translateY(-2px);
}

.cta-success {
  margin: 1.2rem auto 0;
  max-width: 460px;
  padding: 0.9rem 1.4rem;
  border-radius: 24px;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.35);
  color: #17934e;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-success.show {
  opacity: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top .footer-brand h2 {
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.footer-top .footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.1rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col ul li a:hover {
  color: #2dd4bf;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.footer-bottom a:hover {
  color: #2dd4bf;
}

.animate-fade-in,
.animate-slide-up,
.animate-slide-left,
.animate-slide-right,
.animate-zoom-in,
.animate-stagger {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.6, 0.3, 1);
  will-change: opacity, transform;
}

.animate-fade-in {
  opacity: 0;
}

.animate-slide-up {
  transform: translateY(34px);
}

.animate-slide-left {
  transform: translateX(-44px);
}

.animate-slide-right {
  transform: translateX(44px);
}

.animate-zoom-in {
  transform: scale(0.92);
}

.animate-visible {
  opacity: 1;
  transform: none;
}

.cv-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cv-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10002;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cv-close:hover,
.cv-close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

.cv-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  cursor: grab;
}

.cv-img-wrap.grabbing {
  cursor: grabbing;
}

.cv-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.35s ease;
  transform-origin: center center;
  will-change: transform;
}

.cv-img.fading {
  opacity: 0;
}

.cv-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.cv-hint.hidden {
  opacity: 0;
}

.cv-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  z-index: 10002;
  pointer-events: none;
}

.cv-caption {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 86vw;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  z-index: 10002;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cv-caption:empty {
  display: none;
}

.cv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  z-index: 10002;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
}

.cv-nav:hover,
.cv-nav:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

.cv-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.cv-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

.cv-prev {
  left: 14px;
}

.cv-next {
  right: 14px;
}

.cv-spinner {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cv-spin 0.8s linear infinite;
  z-index: 10003;
}

@keyframes cv-spin {
  to {
    transform: rotate(360deg);
  }
}
.cv-img.loading {
  opacity: 0;
}

body.viewer-open .nav,
body.viewer-open .wa-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  .hero .container .hero-sub {
    margin-inline: auto;
  }
  .hero .container .hero-ctas, .hero .container .hero-socials {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 460px);
  }
  .service-grid,
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .portfolio .slider-slide,
  .portfolio .slider-slide.has-carousel {
    grid-template-columns: 1fr;
  }
  .slide-media,
  .slide-image,
  .image-carousel,
  .portfolio .slide-video-grid {
    min-height: 380px;
  }
  .timeline::before {
    left: 0.6rem;
  }
  .timeline-dot {
    left: 0.6rem;
  }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    display: block;
    padding-left: 2.4rem;
  }
  .timeline-item .timeline-body,
  .timeline-item .timeline-meta,
  .timeline-item:nth-child(odd) .timeline-body,
  .timeline-item:nth-child(odd) .timeline-meta,
  .timeline-item:nth-child(even) .timeline-body,
  .timeline-item:nth-child(even) .timeline-meta {
    grid-column: auto;
    text-align: left;
  }
  .timeline-item .timeline-meta,
  .timeline-item:nth-child(odd) .timeline-meta,
  .timeline-item:nth-child(even) .timeline-meta {
    margin-bottom: 0.4rem;
  }
  .timeline-item .timeline-meta .tl-period,
  .timeline-item:nth-child(odd) .timeline-meta .tl-period,
  .timeline-item:nth-child(even) .timeline-meta .tl-period {
    align-self: flex-start;
    margin-left: -1.65rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 4.9rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    min-width: 210px;
    padding: 1rem;
    background: rgba(23, 23, 23, 0.97);
    border-radius: 24px;
    box-shadow: 0 30px 60px -30px rgba(16, 24, 40, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links a {
    display: block;
    text-align: center;
    padding: 0.7rem 1.2rem;
  }
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
}
@media screen and (max-width: 520px) {
  .service-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr;
  }
  .cta-form {
    flex-direction: column;
    border-radius: 24px;
  }
  .float-card--stars {
    top: -6%;
    left: -2%;
    padding: 0.8rem 1rem;
  }
  .float-card--years {
    bottom: 4%;
    left: -2%;
    padding: 0.8rem 1rem;
  }
  .float-card--orange {
    top: 4%;
    right: -2%;
    padding: 0.7rem 1.1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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