:root {
  --orange: #ff6a00;
  --gold: #ffb000;
  --ink: #171717;
  --muted: #666666;
  --cream: #fff8ed;
  --card: #ffffff;
  --border: #ffe0b3;
  --soft: #fffaf2;
  --shadow: 0 24px 70px rgba(70, 41, 7, 0.1);
  --gradient: linear-gradient(135deg, var(--gold), var(--orange));
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 106px 0;
}

.section-soft {
  background: var(--soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 248, 237, 0.84);
  box-shadow: 0 12px 36px rgba(48, 30, 6, 0.09);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1240px, calc(100% - 32px));
  min-height: 78px;
  margin: 12px auto 0;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 224, 179, 0.7);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav-menu li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #efbd74;
}

.nav-link {
  color: #393939;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 106, 0, 0.3);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(44, 27, 3, 0.07);
}

.hero {
  min-height: 100vh;
  padding-top: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8ed 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.badge,
.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #a45500;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.mini-title {
  margin: 22px 0 10px;
  color: var(--orange);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.stats-grid div,
.world-stats div {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(65, 41, 8, 0.06);
}

.stats-grid strong,
.world-stats strong {
  display: block;
  font-size: 1.55rem;
}

.stats-grid span,
.world-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-label {
  margin-bottom: 18px;
}

.section-heading.compact {
  max-width: 760px;
}

.about-section {
  padding: 110px 0;
  background: #fff8f1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #ff6a00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 660px;
  margin: 0 0 20px;
  color: #111;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-content > p {
  max-width: 610px;
  margin: 0;
  color: #5e5e5e;
  font-size: 17px;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.stat-item {
  min-width: 170px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 224, 179, 0.62);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
  margin: 0 0 6px;
  color: #111;
  font-size: 32px;
  font-weight: 850;
  line-height: 1;
}

.stat-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.35;
}

.about-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #777;
  font-size: 15px;
}

.about-meta::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.14);
}

.about-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-blob {
  position: absolute;
  width: min(420px, 78vw);
  height: min(420px, 78vw);
  border-radius: 44% 56% 52% 48%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(255, 176, 0, 0.18), rgba(255, 106, 0, 0.11) 48%, rgba(150, 170, 255, 0.16));
}

.about-person-card {
  position: relative;
  z-index: 2;
  width: min(390px, 90%);
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.94)),
    #fff;
  box-shadow: 0 28px 80px rgba(41, 28, 10, 0.12);
}

.about-card-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.about-card-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.13);
}

.about-card-top span:first-child {
  background: #ff6a00;
}

.about-screen {
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.18), rgba(255, 255, 255, 0.88) 52%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 224, 179, 0.7);
}

.about-slide-title {
  width: 62%;
  height: 20px;
  border-radius: 999px;
  background: #111;
}

.about-slide-line {
  width: 42%;
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(94, 94, 94, 0.24);
}

.about-slide-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 82px;
  margin-top: 24px;
}

.about-slide-chart span {
  width: 34px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #ffb000, #ff6a00);
}

.about-slide-chart span:nth-child(1) {
  height: 32px;
}

.about-slide-chart span:nth-child(2) {
  height: 48px;
}

.about-slide-chart span:nth-child(3) {
  height: 66px;
}

.about-slide-chart span:nth-child(4) {
  height: 82px;
}

.about-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 230px;
  height: 205px;
  transform: translateX(-50%);
}

.about-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2c2c2c, #111);
  transform: translateX(-50%);
}

.about-head::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 38px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd0a2, #f0a36c);
}

.about-body {
  position: absolute;
  left: 50%;
  top: 64px;
  width: 150px;
  height: 128px;
  border-radius: 44px 44px 0 0;
  background: linear-gradient(135deg, #151515, #3a3a3a);
  transform: translateX(-50%);
}

.about-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 42px;
  height: 58px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #ffb000, #ff6a00);
  transform: translateX(-50%);
}

.about-laptop {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  height: 70px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(145deg, #ffffff, #e9e9e9);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}

.about-laptop::after {
  content: "P4U";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #ff6a00;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: translate(-50%, -50%);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  animation: badgeDrift 6s ease-in-out infinite;
}

.badge-1 {
  top: 60px;
  right: 30px;
}

.badge-2 {
  left: 10px;
  bottom: 120px;
  animation-delay: 0.4s;
}

.badge-3 {
  right: 45px;
  bottom: 40px;
  animation-delay: 0.8s;
}

@keyframes badgeDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2,
  .about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .about-meta {
    justify-content: center;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-person-card {
    width: min(350px, 92%);
    min-height: 400px;
  }

  .about-blob {
    width: min(330px, 78vw);
    height: min(330px, 78vw);
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 78px 0;
  }

  .about-stats {
    gap: 14px;
  }

  .stat-item {
    width: 100%;
    min-width: 0;
  }

  .about-visual {
    min-height: 400px;
  }

  .about-person-card {
    min-height: 370px;
    border-radius: 22px;
  }

  .about-person {
    transform: translateX(-50%) scale(0.88);
    transform-origin: bottom center;
  }

  .floating-badge {
    padding: 9px 13px;
    font-size: 12px;
  }

  .badge-1 {
    top: 24px;
    right: 0;
  }

  .badge-2 {
    left: 0;
    bottom: 96px;
  }

  .badge-3 {
    right: 4px;
    bottom: 22px;
  }
}

/* Reference-inspired About refresh */
.about-section {
  background: #f7f1ea;
}

.about-content > p {
  margin-bottom: 28px;
}

.stat-card {
  min-width: 180px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 224, 179, 0.54);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.stat-card h3 {
  margin: 0 0 6px;
  color: #111;
  font-size: 28px;
  font-weight: 850;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.35;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.3);
}

.about-visual {
  min-height: 620px;
}

.about-bg-panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 560px;
  margin: 0 auto;
  padding: 28px;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 42px;
  background: #f9f7f4;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.about-bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 44%, rgba(255, 176, 0, 0.1), transparent 34%),
    radial-gradient(circle at 86% 36%, rgba(255, 106, 0, 0.08), transparent 32%);
  pointer-events: none;
}

.about-bg-panel .about-card-top {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.about-bg-panel .about-card-top span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9d9d9;
}

.about-bg-panel .about-card-top span:first-child {
  background: #ff6a00;
}

.about-bg-panel .about-blob {
  position: absolute;
  left: 50%;
  top: 120px;
  z-index: 1;
  width: min(420px, 82%);
  height: min(420px, 82%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 176, 0, 0.22), rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0));
  transform: translateX(-50%);
}

.dashboard-card {
  position: relative;
  z-index: 2;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 176, 0, 0.35);
  border-radius: 28px;
  background: linear-gradient(180deg, #fbf4e4, #f7f7f7);
  box-shadow: 0 18px 38px rgba(84, 59, 20, 0.08);
}

.dash-title {
  width: 55%;
  height: 22px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #111;
}

.dash-subtitle {
  width: 38%;
  height: 14px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #d8d2c7;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 20px;
  height: 120px;
}

.chart-bars span {
  width: 68px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #f7b53a, #ec6f2d);
}

.chart-bars span:nth-child(1) {
  height: 55%;
}

.chart-bars span:nth-child(2) {
  height: 70%;
}

.chart-bars span:nth-child(3) {
  height: 85%;
}

.chart-bars span:nth-child(4) {
  height: 100%;
}

.about-bg-panel .about-person {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 3;
  display: block;
  width: 310px;
  max-width: 72%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.14));
  transform: translateX(-50%);
}

.about-bg-panel .floating-badge {
  z-index: 5;
  padding: 16px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.badge-top {
  top: 52px;
  right: -38px;
}

.badge-left {
  left: -60px;
  bottom: 118px;
}

.badge-bottom-right {
  right: -28px;
  bottom: 22px;
}

.brand-chip {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  min-width: 220px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #f07422;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .about-bg-panel {
    max-width: 460px;
    min-height: 500px;
  }

  .about-bg-panel .about-person {
    width: 260px;
  }

  .badge-left {
    left: 0;
    bottom: 120px;
  }

  .badge-top {
    right: 0;
  }

  .badge-bottom-right {
    right: 0;
  }
}

@media (max-width: 560px) {
  .about-bg-panel {
    max-width: 100%;
    min-height: 470px;
    padding: 20px;
    border-radius: 30px;
  }

  .dashboard-card {
    min-height: 190px;
    padding: 22px;
    border-radius: 22px;
  }

  .chart-bars {
    gap: 12px;
    height: 94px;
  }

  .chart-bars span {
    width: 45px;
  }

  .about-bg-panel .about-person {
    bottom: 72px;
    width: 235px;
    max-width: 76%;
  }

  .about-bg-panel .floating-badge {
    padding: 10px 14px;
    font-size: 12px;
  }

  .brand-chip {
    min-width: 180px;
    padding: 18px 22px;
    border-radius: 20px;
    font-size: 22px;
  }
}

.feature-grid,
.service-grid,
.showcase-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid,
.showcase-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.service-card,
.number-card,
.showcase-card,
.process-step,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 16px 44px rgba(52, 31, 6, 0.06);
}

.info-card,
.service-card,
.number-card,
.process-step {
  padding: 28px;
}

.info-card p,
.service-card p,
.number-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.card-icon,
.service-icon,
.number-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-weight: 900;
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(52, 31, 6, 0.11);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.number-card {
  grid-column: span 2;
}

.number-card:nth-child(4),
.number-card:nth-child(5) {
  grid-column: span 3;
}

.number-card .mini-title {
  margin-top: 0;
  margin-bottom: 8px;
}

.showcase-card {
  overflow: hidden;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card p {
  margin: 18px 8px 8px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.showcase-card h3 {
  margin: 0 8px 12px;
}

.thumbnail {
  min-height: 220px;
  border-radius: 8px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 237, 0.92));
  border: 1px solid var(--border);
}

.thumbnail span,
.thumbnail strong,
.thumbnail em {
  display: block;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(58, 34, 4, 0.06);
}

.thumbnail span {
  grid-row: span 2;
  background:
    linear-gradient(180deg, transparent 62%, rgba(255, 106, 0, 0.1) 62%),
    #171717;
  position: relative;
}

.thumbnail span::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 34px;
  top: 22px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.thumbnail strong {
  background: var(--gradient);
}

.thumbnail em {
  background: #fff;
}

.thumbnail.alt span {
  background: #fff;
}

.thumbnail.alt strong {
  background: #171717;
}

.process-step {
  min-height: 170px;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 1px;
  right: -30px;
  top: 50%;
  background: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.world-grid,
.team-grid,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 56px;
}

.world-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.world-copy h2,
.team-copy h2,
.contact-copy h2 {
  margin-top: 18px;
}

.world-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.map-visual {
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #fff8ed);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.map-visual::before {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 48% 52% 45% 55%;
  border: 2px solid rgba(255, 224, 179, 0.95);
  box-shadow:
    92px 42px 0 -30px rgba(255, 224, 179, 0.95),
    210px 106px 0 -42px rgba(255, 224, 179, 0.9),
    -40px 150px 0 -34px rgba(255, 224, 179, 0.9);
}

.pin {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(255, 106, 0, 0.13);
}

.pin-one {
  left: 24%;
  top: 42%;
}

.pin-two {
  left: 50%;
  top: 34%;
}

.pin-three {
  right: 27%;
  top: 53%;
}

.pin-four {
  right: 18%;
  top: 30%;
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), transparent);
}

.line-one {
  width: 55%;
  left: 22%;
  top: 42%;
  transform: rotate(-8deg);
}

.line-two {
  width: 44%;
  right: 17%;
  top: 47%;
  transform: rotate(17deg);
}

.faq-layout {
  grid-template-columns: 0.42fr 0.58fr;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
  text-align: left;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 1.2rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.contact-section {
  background: #fff;
}

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info a {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
}

.whatsapp-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #1f9f55;
  color: #fff !important;
}

.contact-form {
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  text-align: center;
  font-weight: 700;
}

.footer {
  padding: 52px 0 26px;
  background: #171717;
  color: #fff;
}

.footer p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr auto;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 224, 179, 0.28);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .hero-inner.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .world-grid,
  .team-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after,
  .sticky-heading {
    position: static;
  }
}

@media (max-width: 860px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    display: grid;
    gap: 0;
  }

  .nav-menu li {
    justify-content: center;
    border-bottom: 1px solid #fff1d8;
  }

  .nav-menu li:not(:last-child)::after {
    display: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
  }

  .brand span {
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero {
    padding-top: 136px;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .stats-grid,
  .feature-grid,
  .service-grid,
  .showcase-grid,
  .process-grid,
  .world-stats,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .number-card,
  .number-card:nth-child(4),
  .number-card:nth-child(5) {
    grid-column: auto;
  }

  .thumbnail {
    min-height: 190px;
  }

  .map-visual {
    min-height: 320px;
  }
}

@media (max-width: 460px) {
  .navbar {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .contact-form,
  .info-card,
  .service-card,
  .number-card,
  .process-step {
    padding: 22px;
  }
}

/* Reference-style home hero refresh */
body {
  background: #f6f1eb;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 36px;
}

.site-header {
  background: #fff;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(100%, 1660px);
  min-height: 118px;
  margin: 0 auto;
  padding: 0 clamp(30px, 4.3vw, 72px);
  grid-template-columns: minmax(270px, auto) 1fr;
  gap: 28px;
  border: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
}

.brand {
  gap: 18px;
  font-size: 1.35rem;
  font-weight: 850;
}

.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
}

.nav-panel {
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.nav-menu {
  gap: clamp(30px, 4.1vw, 68px);
}

.nav-menu li {
  position: relative;
  gap: 0;
}

.nav-menu li:not(:last-child)::after {
  display: none;
}

.nav-link {
  position: relative;
  padding: 18px 0 20px;
  color: #242426;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
}

.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-cta {
  min-width: 152px;
  min-height: 52px;
  border-radius: 16px;
  font-size: 1rem;
}

.hero-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 70px;
  border-radius: 0 0 clamp(70px, 8vw, 150px) clamp(70px, 8vw, 150px);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

.hero-shell::after {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 88px);
  padding: 95px 24px 40px;
  background: transparent;
}

.next-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 95px;
  background: #f6f1eb;
}

.about-section.next-section {
  padding: 110px 0;
  background: #f7f1ea;
}

@media (max-width: 991px) {
  .about-section.next-section {
    padding: 92px 0;
  }
}

@media (max-width: 560px) {
  .about-section.next-section {
    padding: 78px 0;
  }
}

/* Image-led About section */
.about-section.next-section {
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f1 0%, #ffffff 55%, #fff3e3 100%);
}

.about-section .about-grid {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.about-section .about-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-gradient-circle {
  position: absolute;
  z-index: 1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 176, 0, 0.75), rgba(255, 106, 0, 0.55), rgba(255, 106, 0, 0.12));
  box-shadow: 0 28px 70px rgba(255, 106, 0, 0.18);
}

.about-section .about-person {
  position: relative;
  z-index: 2;
  width: 390px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.14));
}

.about-section .floating-badge {
  position: absolute;
  z-index: 4;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.about-section .badge-top {
  top: 78px;
  right: 20px;
}

.about-section .badge-left {
  left: 10px;
  bottom: 170px;
}

.about-section .badge-bottom {
  right: 35px;
  bottom: 72px;
}

.about-deco,
.about-spark {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.about-deco {
  width: 18px;
  height: 18px;
  border: 4px solid #ff6a00;
  border-radius: 50%;
  opacity: 0.85;
}

.dot-one {
  left: 12%;
  top: 23%;
}

.dot-two {
  right: 13%;
  bottom: 23%;
  width: 14px;
  height: 14px;
  border-width: 3px;
  border-color: #ffb000;
}

.about-spark {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.spark-one {
  left: 22%;
  top: 14%;
}

.spark-two {
  right: 18%;
  top: 31%;
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-section .about-content {
    text-align: center;
  }

  .about-section .about-stats {
    justify-content: center;
  }

  .about-section .about-visual {
    min-height: 500px;
  }

  .about-gradient-circle {
    width: 360px;
    height: 360px;
  }

  .about-section .about-person {
    width: 340px;
  }

  .about-section .badge-top {
    right: 0;
  }

  .about-section .badge-left {
    left: 0;
    bottom: 150px;
  }

  .about-section .badge-bottom {
    right: 0;
  }
}

@media (max-width: 560px) {
  .about-section.next-section {
    padding: 78px 0;
  }

  .about-section .about-visual {
    min-height: 390px;
  }

  .about-gradient-circle {
    width: 285px;
    height: 285px;
  }

  .about-section .about-person {
    width: 300px;
  }

  .about-section .floating-badge {
    display: none;
  }

  .about-deco,
  .about-spark {
    opacity: 0.7;
    transform: scale(0.78);
  }
}

.hero-inner {
  width: min(1500px, calc(100% - 80px));
  max-width: none;
  text-align: center;
  padding-top: 35px;
}

.hero h1 {
  max-width: 980px;
  margin: 30px auto 0;
  color: #050505;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -1.2px;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero-text {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5e5e5e;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.animated-card-stack {
  position: relative;
  max-width: 1180px;
  height: 340px;
  min-height: 0;
  margin: 70px auto 42px;
  overflow: visible;
  perspective: 1200px;
}

.card-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform:
    translate3d(var(--x), var(--y), 0)
    rotate(var(--r))
    scale(1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation: cardRevealStable 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.layer-investor {
  width: 285px;
  z-index: 1;
  --x: -520px;
  --y: -30px;
  --r: -5deg;
  animation-delay: 0.03s;
}

.layer-sales {
  width: 340px;
  z-index: 3;
  --x: -350px;
  --y: -55px;
  --r: 1deg;
  animation-delay: 0.08s;
}

.layer-company {
  width: 470px;
  z-index: 6;
  --x: -235px;
  --y: -75px;
  --r: 0deg;
  animation-delay: 0.13s;
}

.layer-product {
  width: 340px;
  z-index: 4;
  --x: 210px;
  --y: -48px;
  --r: -1deg;
  animation-delay: 0.18s;
}

.layer-financial {
  width: 310px;
  z-index: 2;
  --x: 430px;
  --y: -32px;
  --r: 4deg;
  animation-delay: 0.23s;
}

.hero-title,
.hero-subtext,
.hero-actions {
  will-change: opacity, transform;
}

.hero-title {
  opacity: 0;
  animation: fadeUpFast 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-duration: 0.55s;
}

.hero-subtext {
  opacity: 0;
  animation: fadeUpFast 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-duration: 0.55s;
  animation-delay: 0.06s;
}

.hero-actions {
  opacity: 0;
  animation: fadeUpFast 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-duration: 0.55s;
  animation-delay: 0.12s;
}

@keyframes cardRevealStable {
  from {
    opacity: 0;
    transform:
      translate3d(var(--x), var(--y), 0)
      rotate(var(--r))
      scale(0.985);
  }

  to {
    opacity: 1;
    transform:
      translate3d(var(--x), var(--y), 0)
      rotate(var(--r))
      scale(1);
  }
}

@keyframes cardFloatStable {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -4px, 0);
  }
}

.floating-chip {
  position: absolute;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  will-change: transform;
  animation: chipFloat 7s ease-in-out infinite;
  animation-duration: 5.5s;
}

.floating-chip span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
}

.chip-investor {
  left: 8%;
  top: -48px;
  transform: rotate(-4deg);
}

.chip-sales {
  left: -2%;
  bottom: 54px;
  transform: rotate(-3deg);
}

.chip-corporate {
  right: 8%;
  top: -46px;
  transform: rotate(5deg);
}

.chip-startup {
  right: -2%;
  bottom: 50px;
  transform: rotate(4deg);
}

@keyframes chipFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

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

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


.hero-actions {
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding-top: 0;
}

.hero .btn {
  min-width: 0;
  min-height: 0;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.hero .btn-dark {
  gap: 12px;
  border: none;
  background: linear-gradient(135deg, #ffb000 0%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 16px 35px rgba(255, 106, 0, 0.28);
}

.hero .btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.38);
}

.hero .btn-secondary {
  background: #fff;
  color: #090909;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .card-layer {
    animation: none !important;
    opacity: 1 !important;
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--r)) !important;
  }

  .hero-title,
  .hero-subtext,
  .hero-actions,
  .floating-chip,
  .floating-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1280px) {
  .navbar {
    min-height: 104px;
    padding-inline: 34px;
  }

  .brand img {
    width: 72px;
    height: auto;
  }

  .nav-menu {
    gap: 34px;
  }

  .nav-link {
    font-size: 0.94rem;
  }
}

@media (max-width: 1040px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .hero {
    padding-top: 68px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 8.4vw, 5.8rem);
  }
}

@media (max-width: 860px) {
  body::before {
    border-radius: 28px;
  }

  .site-header {
    background: #fff;
  }

  .navbar {
    width: 100%;
    min-height: 92px;
    margin: 0;
    padding: 0 20px;
  }

  .brand {
    gap: 10px;
    font-size: 1.05rem;
  }

  .brand img {
    width: 54px;
    height: 42px;
  }

  .nav-toggle {
    width: 50px;
    height: 50px;
    border-color: rgba(0, 0, 0, 0.12);
    border-radius: 14px;
  }

  .nav-panel {
    top: 104px;
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border-color: rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease;
  }

  .nav-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }

  .nav-link {
    padding: 13px 0;
  }

  .nav-link::after {
    bottom: 3px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-shell {
    padding-bottom: 52px;
    border-bottom-left-radius: 58px;
    border-bottom-right-radius: 58px;
  }

  .hero {
    min-height: auto;
    padding: 82px 0 28px;
  }

  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(2.65rem, 9vw, 3.8rem);
    letter-spacing: -0.035em;
  }

  .hero-text {
    max-width: 560px;
    font-size: 1.02rem;
  }

  .animated-card-stack {
    height: auto;
    display: flex;
    gap: 18px;
    margin: 45px auto 30px;
    padding: 20px 16px 40px;
    overflow-x: auto;
    overflow-y: visible;
    perspective: none;
    scrollbar-width: none;
  }

  .animated-card-stack::-webkit-scrollbar {
    display: none;
  }

  .card-layer {
    position: static;
    width: 280px !important;
    flex: 0 0 auto;
    opacity: 1;
    animation: none;
    transform: none !important;
  }

  .card-layer.layer-company {
    width: 320px;
  }

  .floating-chip {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
  }

  .animated-card-stack {
    margin-top: 45px;
  }
}

@media (max-width: 560px) {
  body::before {
    border-radius: 22px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(2.62rem, 11vw, 3.25rem);
    line-height: 1.03;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-text br {
    display: none;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
  }

  .hero .btn {
    width: 100%;
    min-height: 58px;
  }

}

/* Final reference-style About section */
.about-section.next-section,
#about.about-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf4 45%, #fff1e4 100%);
}

.about-container {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  display: inline-block;
  margin-bottom: 22px;
  color: #ff6a00;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-line {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
}

#about .about-content h2 {
  max-width: 700px;
  margin: 0 0 34px;
  color: #12131a;
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

#about .about-content > p {
  max-width: 680px;
  margin: 0 0 52px;
  color: #555b6b;
  font-size: 20px;
  line-height: 1.75;
}

#about .about-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 0 54px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: rgba(255, 106, 0, 0.09);
  color: #ff6a00;
  font-size: 28px;
  font-weight: 800;
}

.about-stat h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 40px;
  line-height: 1;
}

.about-stat p {
  margin: 0;
  color: #5f6472;
  font-size: 18px;
  line-height: 1.2;
}

.about-divider {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.12);
}

#about .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px 18px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 20px 38px rgba(255, 106, 0, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .about-btn span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #ff6a00;
}

#about .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(255, 106, 0, 0.35);
}

#about .about-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle {
  position: absolute;
  z-index: 1;
  width: min(620px, 82vw);
  height: min(620px, 82vw);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffd86b 0%, #ffb000 38%, #ff6a00 100%);
  box-shadow: 0 36px 90px rgba(255, 106, 0, 0.2);
}

#about .about-person {
  position: relative;
  z-index: 3;
  width: min(470px, 62vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.16));
  animation: aboutImageFloat 7s ease-in-out infinite;
}

#about .about-person::selection {
  background: transparent;
}

#about .floating-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  animation: aboutBadgeFloat 6.5s ease-in-out infinite;
}

#about .like-badge {
  top: 92px;
  left: 112px;
}

#about .like-badge span,
#about .slides-badge span,
#about .expert-badge span,
#about .satisfaction-badge span {
  color: #ff6a00;
}

#about .slides-badge {
  top: 190px;
  right: 0;
}

#about .expert-badge {
  left: 10px;
  bottom: 205px;
}

#about .satisfaction-badge {
  right: 12px;
  bottom: 150px;
}

.clients-pill {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 6;
  min-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.clients-pill strong {
  color: #111;
  font-size: 20px;
}

#about .spark {
  position: absolute;
  z-index: 4;
  color: #ffb000;
  font-size: 34px;
}

#about .spark-1 {
  top: 70px;
  right: 210px;
}

#about .spark-2 {
  left: 70px;
  top: 340px;
}

#about .spark-3 {
  right: 115px;
  bottom: 245px;
}

#about .dot {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
}

#about .dot-blue {
  left: 70px;
  top: 480px;
  width: 34px;
  height: 34px;
  background: #2999f5;
}

#about .dot-purple {
  right: 85px;
  top: 340px;
  width: 32px;
  height: 32px;
  background: #7c3cff;
}

#about .dot-orange {
  right: 50px;
  top: 455px;
  width: 22px;
  height: 22px;
  border: 5px solid #ff6a00;
}

.dot-grid {
  position: absolute;
  right: 120px;
  top: 115px;
  z-index: 2;
  width: 76px;
  height: 76px;
  opacity: 0.75;
  background-image: radial-gradient(#ff6a00 2px, transparent 2px);
  background-size: 14px 14px;
}

@keyframes aboutImageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes aboutBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  #about .about-content {
    text-align: center;
  }

  #about .about-content h2,
  #about .about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-stats {
    justify-content: center;
  }

  .about-line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-section.next-section,
  #about.about-section {
    padding: 90px 18px;
  }

  #about .about-content h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  #about .about-content > p {
    font-size: 16px;
  }

  #about .about-stats {
    flex-direction: column;
    gap: 22px;
  }

  .about-divider {
    display: none;
  }

  #about .about-visual {
    min-height: 560px;
  }

  .about-circle {
    width: 340px;
    height: 340px;
  }

  #about .about-person {
    width: 300px;
  }

  #about .floating-badge {
    padding: 11px 16px;
    font-size: 13px;
  }

  #about .like-badge {
    top: 58px;
    left: 20px;
  }

  #about .slides-badge {
    top: 128px;
    right: 0;
  }

  #about .expert-badge,
  #about .satisfaction-badge {
    display: none;
  }

  .clients-pill {
    bottom: 40px;
    min-width: 310px;
    padding: 14px 18px;
  }

  .clients-pill strong {
    font-size: 15px;
  }

  #about .dot-grid,
  #about .dot,
  #about .spark {
    display: none;
  }
}

/* Soft pastel About section rebuild */
.about-section.next-section,
#about.about-section {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #fff7fb 45%, #f7fbff 100%);
}

.about-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #8b8fa3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-line,
.about-divider,
.stat-icon,
#about .slides-badge,
#about .expert-badge,
#about .satisfaction-badge,
.about-circle,
.dot-grid,
#about .dot {
  display: none;
}

#about .about-content h2 {
  max-width: 560px;
  margin: 0 0 22px;
  color: #11111a;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

#about .about-content > p {
  max-width: 570px;
  margin: 0 0 38px;
  color: #626879;
  font-size: 17px;
  line-height: 1.75;
}

#about .about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  margin: 0 0 38px;
}

#about .about-stat {
  display: block;
}

#about .about-stat h3 {
  margin: 0 0 6px;
  color: #11111a;
  font-size: 34px;
  line-height: 1;
}

#about .about-stat p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.25;
}

#about .about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.22);
}

#about .about-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-blob {
  position: absolute;
  z-index: 1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, rgba(167, 139, 250, 0.35), rgba(196, 181, 253, 0.22), rgba(255, 255, 255, 0));
}

#about .about-person {
  position: relative;
  z-index: 3;
  width: 360px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.12));
  animation: none;
}

#about .like-badge {
  position: absolute;
  top: 90px;
  left: 95px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a3d, #ff4f1f);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.22);
}

#about .like-badge span {
  font-size: 14px;
}

#about .like-badge strong {
  font-size: 16px;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 5;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd39a, #ff8a4c);
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars span:nth-child(2) {
  background: linear-gradient(135deg, #c7d2fe, #6366f1);
}

.avatars span:nth-child(3) {
  background: linear-gradient(135deg, #bae6fd, #0284c7);
}

.avatars span:nth-child(4) {
  background: linear-gradient(135deg, #fecdd3, #e11d48);
}

#about .clients-pill p {
  margin: 0;
  color: #11111a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

#about .shape {
  position: absolute;
  z-index: 2;
}

#about .shape-purple {
  right: 130px;
  top: 165px;
  width: 110px;
  height: 80px;
  border-radius: 60% 40% 55% 45%;
  background: rgba(124, 92, 255, 0.75);
}

#about .shape-blue {
  right: 90px;
  top: 190px;
  width: 34px;
  height: 34px;
  border: 8px solid rgba(45, 212, 255, 0.9);
  border-radius: 10px;
}

#about .spark {
  position: absolute;
  z-index: 2;
  font-size: 22px;
}

#about .spark-1 {
  top: 95px;
  left: 155px;
  color: #ff6a00;
}

#about .spark-2 {
  right: 135px;
  bottom: 155px;
  color: #7c3cff;
}

@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #about .about-content {
    text-align: center;
  }

  #about .about-content h2,
  #about .about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-stats {
    justify-content: center;
  }

  #about .about-visual {
    min-height: 470px;
  }

  #about .about-person {
    width: 300px;
  }

  #about .about-blob {
    width: 340px;
    height: 340px;
  }

  #about .like-badge {
    left: 35px;
    top: 55px;
  }

  #about .clients-pill {
    bottom: 35px;
  }
}

@media (max-width: 576px) {
  .about-section.next-section,
  #about.about-section {
    padding: 80px 18px;
  }

  #about .about-content h2 {
    font-size: 34px;
  }

  #about .about-content > p {
    font-size: 15px;
  }

  #about .about-stats {
    gap: 24px;
  }

  #about .shape,
  #about .spark,
  #about .like-badge {
    display: none;
  }

  #about .clients-pill {
    min-width: 280px;
    justify-content: center;
  }
}

/* Approved About mockup */
.about-section.next-section,
#about.about-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #fff9f4 48%, #fff3ea 100%);
}

.about-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff6a00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-underline {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
}

#about .about-content h2 {
  max-width: 620px;
  margin: 0 0 28px;
  color: #111222;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
}

#about .about-content > p {
  max-width: 650px;
  margin: 0 0 46px;
  color: #5e6678;
  font-size: 20px;
  line-height: 1.75;
}

#about .about-stats {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 0 42px;
}

#about .about-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}

#about .stat-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: rgba(255, 106, 0, 0.08);
  color: #ff8a00;
  font-size: 28px;
  font-weight: 800;
}

#about .about-stat h3 {
  margin: 0 0 8px;
  color: #111222;
  font-size: 38px;
  line-height: 1;
}

#about .about-stat p {
  margin: 0;
  color: #6d7485;
  font-size: 16px;
  line-height: 1.25;
}

#about .about-divider {
  display: block;
  width: 1px;
  height: 80px;
  background: rgba(17, 18, 34, 0.12);
}

#about .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 18px 18px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 20px 36px rgba(255, 106, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#about .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(255, 106, 0, 0.34);
}

#about .btn-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #ff6a00;
  font-size: 20px;
}

#about .about-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-blob {
  display: none;
}

#about .about-circle {
  position: absolute;
  z-index: 1;
  display: block;
  width: 610px;
  height: 610px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd978 0%, #ffbb34 45%, #ff8a00 100%);
  box-shadow: 0 38px 80px rgba(255, 138, 0, 0.2);
}

#about .about-person {
  position: relative;
  z-index: 3;
  width: 450px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.14));
  animation: aboutApprovedFloat 7s ease-in-out infinite;
}

#about .like-badge,
#about .slides-badge,
#about .expert-badge,
#about .satisfaction-badge,
#about .clients-pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

#about .like-badge {
  top: 85px;
  left: 120px;
  gap: 10px;
  padding: 14px 22px;
  color: #111222;
  animation: aboutApprovedBadge 6.4s ease-in-out infinite;
}

#about .heart-icon {
  color: #ff6a00;
  font-size: 20px;
}

#about .like-badge strong {
  color: #111222;
  font-size: 22px;
}

#about .slides-badge,
#about .expert-badge,
#about .satisfaction-badge {
  gap: 12px;
  padding: 18px 28px;
  animation: aboutApprovedBadge 6.4s ease-in-out infinite;
}

#about .slides-badge {
  top: 205px;
  right: -10px;
}

#about .expert-badge {
  left: 35px;
  bottom: 220px;
  animation-delay: 0.25s;
}

#about .satisfaction-badge {
  right: 0;
  bottom: 170px;
  animation-delay: 0.45s;
}

#about .badge-icon {
  color: #ff8a00;
  font-size: 18px;
}

#about .slides-badge strong,
#about .expert-badge strong,
#about .satisfaction-badge strong {
  color: #111222;
  font-size: 18px;
}

#about .clients-pill {
  left: 50%;
  bottom: 48px;
  min-width: 520px;
  justify-content: center;
  gap: 20px;
  padding: 18px 28px;
  transform: translateX(-50%);
}

#about .avatar-stack {
  display: flex;
  align-items: center;
}

#about .clients-pill strong {
  color: #111222;
  font-size: 20px;
}

#about .spark {
  position: absolute;
  z-index: 4;
  display: block;
  color: #ffb000;
  font-size: 30px;
}

#about .spark-1 {
  top: 105px;
  right: 220px;
}

#about .spark-2 {
  left: 70px;
  top: 365px;
}

#about .spark-3 {
  right: 90px;
  bottom: 245px;
}

#about .dot {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 50%;
}

#about .dot-blue {
  left: 70px;
  top: 510px;
  width: 34px;
  height: 34px;
  background: #3ba3ff;
}

#about .dot-purple {
  right: 70px;
  top: 360px;
  width: 32px;
  height: 32px;
  background: #7a4dff;
}

#about .dot-ring {
  right: 55px;
  top: 495px;
  width: 22px;
  height: 22px;
  border: 4px solid #ff6a00;
  background: transparent;
}

#about .dot-grid {
  position: absolute;
  right: 120px;
  top: 140px;
  z-index: 2;
  display: block;
  width: 78px;
  height: 78px;
  opacity: 0.9;
  background-image: radial-gradient(#ff8a00 2px, transparent 2px);
  background-size: 14px 14px;
}

#about .shape {
  display: none;
}

@keyframes aboutApprovedFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes aboutApprovedBadge {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@media (max-width: 1100px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  #about .about-content {
    text-align: center;
  }

  #about .about-content h2,
  #about .about-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-stats {
    justify-content: center;
  }

  .about-underline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-section.next-section,
  #about.about-section {
    padding: 90px 18px;
  }

  #about .about-content h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  #about .about-content > p {
    font-size: 16px;
  }

  #about .about-stats {
    flex-direction: column;
    gap: 22px;
  }

  #about .about-divider {
    display: none;
  }

  #about .about-visual {
    min-height: 560px;
  }

  #about .about-circle {
    width: 340px;
    height: 340px;
  }

  #about .about-person {
    width: 300px;
  }

  #about .like-badge {
    top: 58px;
    left: 20px;
    padding: 11px 16px;
  }

  #about .slides-badge {
    top: 128px;
    right: 0;
    padding: 11px 16px;
  }

  #about .expert-badge,
  #about .satisfaction-badge {
    display: none;
  }

  #about .slides-badge strong {
    font-size: 13px;
  }

  #about .clients-pill {
    bottom: 40px;
    min-width: 310px;
    padding: 14px 18px;
  }

  #about .clients-pill strong {
    font-size: 15px;
  }

  #about .dot-grid,
  #about .dot,
  #about .spark {
    display: none;
  }
}
/* About visual alignment refinement */
#about.about-section {
  padding: 110px 24px 100px;
}

#about .about-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

#about .about-visual {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#about .about-circle {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, #FFD978 0%, #FFBB34 45%, #FF8A00 100%);
  z-index: 1;
  box-shadow: 0 34px 76px rgba(255, 138, 0, 0.18);
}

#about .about-person {
  position: absolute;
  width: 405px;
  max-width: 100%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.14));
  animation: none;
}

#about .like-badge {
  position: absolute;
  top: 70px;
  left: 110px;
  z-index: 5;
  animation: none;
}

#about .slides-badge {
  position: absolute;
  top: 165px;
  right: 0;
  z-index: 5;
  animation: none;
}

#about .expert-badge {
  position: absolute;
  left: 15px;
  bottom: 190px;
  z-index: 5;
  animation: none;
}

#about .satisfaction-badge {
  position: absolute;
  right: 15px;
  bottom: 145px;
  z-index: 5;
  animation: none;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  z-index: 6;
  min-width: 430px;
  animation: none;
}

#about .dot-grid {
  position: absolute;
  right: 100px;
  top: 115px;
  z-index: 2;
}

#about .spark-1 {
  top: 80px;
  right: 180px;
}

#about .spark-2 {
  left: 55px;
  top: 300px;
}

#about .spark-3 {
  right: 65px;
  bottom: 220px;
}

#about .dot-blue {
  left: 70px;
  top: 410px;
}

#about .dot-purple {
  right: 65px;
  top: 300px;
}

#about .dot-ring {
  right: 45px;
  top: 420px;
}

@media (max-width: 991px) {
  #about .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #about .about-visual {
    max-width: 560px;
    min-height: 520px;
  }

  #about .about-circle {
    width: 390px;
    height: 390px;
  }

  #about .about-person {
    width: 310px;
  }

  #about .clients-pill {
    min-width: 320px;
  }
}

@media (max-width: 576px) {
  #about .about-visual {
    min-height: 440px;
  }

  #about .about-circle {
    width: 300px;
    height: 300px;
  }

  #about .about-person {
    width: 260px;
  }

  #about .slides-badge,
  #about .expert-badge,
  #about .satisfaction-badge,
  #about .dot-grid,
  #about .spark,
  #about .dot {
    display: none;
  }

  #about .like-badge {
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
  }

  #about .clients-pill {
    bottom: 20px;
    min-width: 280px;
  }
}

/* About section final rebuild: single complete visual image */
#about.about-section {
  padding: 115px 24px;
  background: linear-gradient(120deg, #ffffff 0%, #fffaf5 48%, #fff1e7 100%);
  overflow: hidden;
}

#about .about-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

#about .about-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #FF6A00;
  margin-bottom: 12px;
  text-transform: uppercase;
}

#about .about-underline {
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFB000, #FF6A00);
  margin-bottom: 34px;
}

#about .about-content h2 {
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.06;
  letter-spacing: -2px;
  color: #111222;
  font-weight: 800;
  max-width: 660px;
  margin-bottom: 28px;
}

#about .about-content p {
  font-size: 19px;
  line-height: 1.75;
  color: #5E6678;
  max-width: 670px;
  margin-bottom: 44px;
}

#about .about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 42px;
}

#about .about-stat {
  display: flex;
  align-items: center;
  gap: 18px;
}

#about .stat-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 0, 0.08);
  color: #FF6A00;
  font-size: 26px;
  font-weight: 800;
}

#about .about-stat h3 {
  font-size: 38px;
  line-height: 1;
  color: #111222;
  margin-bottom: 8px;
}

#about .about-stat p {
  margin: 0;
  font-size: 16px;
  color: #6D7485;
}

#about .about-divider {
  width: 1px;
  height: 76px;
  background: rgba(17, 18, 34, 0.12);
}

#about .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFB000, #FF6A00);
  box-shadow: 0 20px 36px rgba(255, 106, 0, 0.24);
}

#about .about-btn span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #FF6A00;
  display: grid;
  place-items: center;
}

#about .about-visual {
  width: 100%;
  min-height: 0;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

#about .about-visual img {
  width: min(620px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  #about .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  #about .about-content {
    text-align: center;
  }

  #about .about-underline {
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-content h2,
  #about .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  #about .about-stats {
    justify-content: center;
  }

  #about .about-visual img {
    width: min(520px, 100%);
  }
}

@media (max-width: 576px) {
  #about.about-section {
    padding: 80px 18px;
  }

  #about .about-content h2 {
    font-size: 38px;
  }

  #about .about-content p {
    font-size: 16px;
  }

  #about .about-stats {
    flex-direction: column;
    gap: 22px;
  }

  #about .about-divider {
    display: none;
  }
}

/* Clean About visual image and subtle P4U accents */
#about .about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#about .about-visual-img {
  width: min(620px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.12));
}

#about .about-dot,
#about .about-ring,
#about .about-spark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

#about .about-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB000, #FF6A00);
}

#about .dot-one {
  top: 18%;
  left: 12%;
}

#about .dot-two {
  right: 10%;
  bottom: 28%;
}

#about .about-ring {
  width: 24px;
  height: 24px;
  border: 4px solid #FF6A00;
  border-radius: 50%;
}

#about .ring-one {
  right: 7%;
  top: 48%;
}

#about .about-spark {
  color: #FF8A00;
  font-size: 26px;
}

#about .spark-one {
  top: 10%;
  left: 20%;
}

#about .spark-two {
  right: 14%;
  bottom: 18%;
}

@media (max-width: 991px) {
  #about .about-visual-img {
    width: min(520px, 100%);
  }
}

@media (max-width: 576px) {
  #about .about-dot,
  #about .about-ring,
  #about .about-spark {
    display: none;
  }
}

/* Seamless hero-to-about curve background */
main {
  background: linear-gradient(120deg, #ffffff 0%, #fffaf5 48%, #fff1e7 100%);
}

.hero-shell {
  background: #ffffff;
}

.hero-shell::after {
  display: none;
}

#about.about-section {
  background: transparent;
}

/* About floating stats cards */
#about .about-stats,
#about .about-divider {
  display: none;
}

#about .floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 999px;
  padding: 16px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  z-index: 5;
  white-space: nowrap;
}

#about .floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 0, 0.10);
  color: #FF6A00;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

#about .floating-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: #111222;
  font-weight: 800;
}

#about .floating-card p {
  margin: 4px 0 0;
  font-size: 15px;
  color: #6D7485;
  line-height: 1.2;
}

#about .slides-card {
  top: 120px;
  right: -10px;
}

#about .satisfaction-card {
  right: 10px;
  bottom: 145px;
}

#about .expert-card {
  left: 10px;
  bottom: 200px;
}

@media (max-width: 991px) {
  #about .slides-card {
    top: 76px;
    right: 0;
  }

  #about .satisfaction-card {
    right: 0;
    bottom: 110px;
  }

  #about .expert-card {
    left: 0;
    bottom: 160px;
  }

}

@media (max-width: 576px) {
  #about .floating-card {
    padding: 11px 14px;
    gap: 9px;
  }

  #about .floating-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  #about .floating-card strong {
    font-size: 15px;
  }

  #about .floating-card p {
    font-size: 12px;
  }

  #about .slides-card,
  #about .satisfaction-card {
    display: none;
  }

  #about .expert-card {
    left: 0;
    bottom: 105px;
  }

}

/* About visual size refinement */
#about .about-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-visual-img,
#about .about-person {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

#about .about-circle {
  width: 430px;
  height: 430px;
}

#about .floating-card,
#about .slides-badge,
#about .expert-badge,
#about .satisfaction-badge {
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  gap: 10px;
}

#about .floating-card strong,
#about .slides-badge strong,
#about .expert-badge strong,
#about .satisfaction-badge strong {
  font-size: 16px;
  line-height: 1.1;
}

#about .floating-card p,
#about .slides-badge p,
#about .expert-badge p,
#about .satisfaction-badge p {
  font-size: 13px;
  line-height: 1.2;
  margin: 2px 0 0;
}

#about .floating-icon,
#about .badge-icon {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

#about .slides-card,
#about .slides-badge {
  top: 120px;
  right: 0;
}

#about .satisfaction-card,
#about .satisfaction-badge {
  right: 8px;
  bottom: 110px;
}

#about .expert-card,
#about .expert-badge {
  left: 10px;
  bottom: 150px;
}

#about .about-dot {
  width: 10px;
  height: 10px;
}

#about .about-ring {
  width: 18px;
  height: 18px;
  border-width: 3px;
}

#about .about-spark,
#about .spark {
  font-size: 18px;
}

#about .dot-grid {
  width: 56px;
  height: 56px;
  background-size: 12px 12px;
}

@media (max-width: 991px) {
  #about .about-visual {
    max-width: 520px;
    min-height: 470px;
  }

  #about .about-visual-img,
  #about .about-person {
    width: min(300px, 100%);
  }

  #about .about-circle {
    width: 340px;
    height: 340px;
  }

  #about .floating-card,
  #about .slides-badge,
  #about .expert-badge,
  #about .satisfaction-badge {
    padding: 10px 14px;
  }

  #about .floating-card strong,
  #about .slides-badge strong,
  #about .expert-badge strong,
  #about .satisfaction-badge strong {
    font-size: 14px;
  }

  #about .floating-icon,
  #about .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  #about .about-visual {
    min-height: 390px;
  }

  #about .about-visual-img,
  #about .about-person {
    width: 240px;
  }

  #about .about-circle {
    width: 270px;
    height: 270px;
  }

  #about .slides-card,
  #about .slides-badge,
  #about .expert-card,
  #about .expert-badge,
  #about .satisfaction-card,
  #about .satisfaction-badge {
    transform: scale(0.9);
  }
}

/* About client pill placement */
#about .about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-bottom: 90px;
}

#about .about-visual-img,
#about .about-person {
  position: relative;
  z-index: 3;
  width: min(390px, 100%);
  height: auto;
  object-fit: contain;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 430px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.10);
}

#about .avatar-stack {
  display: flex;
  align-items: center;
}

#about .avatar-stack img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-left: -10px;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
}

#about .avatar-stack img:first-child {
  margin-left: 0;
}

#about .clients-pill strong {
  font-size: 22px;
  font-weight: 800;
  color: #111222;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #about .about-visual {
    padding-bottom: 75px;
  }

  #about .clients-pill {
    min-width: 310px;
    padding: 14px 18px;
    gap: 12px;
    bottom: 15px;
  }

  #about .avatar-stack img {
    width: 34px;
    height: 34px;
    margin-left: -8px;
  }

  #about .clients-pill strong {
    font-size: 15px;
  }
}

/* About image and client pill scale refinement */
#about .about-visual-img,
#about .about-person {
  width: min(340px, 100%);
  height: auto;
  object-fit: contain;
}

#about .clients-pill {
  min-width: 360px;
  padding: 14px 22px;
  gap: 14px;
  bottom: 16px;
  transform: translateX(-50%) scale(0.88);
  transform-origin: center;
}

#about .avatar-stack img {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 2px solid #fff;
}

#about .clients-pill strong {
  font-size: 18px;
  font-weight: 800;
}

/* About image-only scale refinement */
#about .about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-visual-img,
#about .about-person {
  width: min(330px, 100%);
  height: auto;
  object-fit: contain;
}

/* About client pill width refinement */
#about .about-visual {
  position: relative;
  --person-width: 360px;
}

#about .about-visual-img,
#about .about-person {
  width: var(--person-width);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 88%;
  max-width: 380px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-sizing: border-box;
}

#about .avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#about .avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}

#about .avatar-stack img:first-child {
  margin-left: 0;
}

#about .clients-pill strong {
  font-size: 18px;
  font-weight: 800;
  color: #111222;
  line-height: 1;
  white-space: nowrap;
}

/* About client pill visual merge */
#about.about-section,
#about .about-container,
#about .about-visual {
  overflow: visible !important;
}

#about .about-visual {
  position: relative;
  overflow: visible !important;
  padding-bottom: 70px;
}

#about .about-visual-img,
#about .about-person {
  position: relative;
  z-index: 3;
  display: block;
  object-fit: contain;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  z-index: 7;
  width: auto;
  max-width: 390px;
  min-width: 360px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

#about .avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#about .avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -8px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.10);
}

#about .avatar-stack img:first-child {
  margin-left: 0;
}

#about .clients-pill strong {
  font-size: 18px;
  font-weight: 800;
  color: #111222;
  white-space: nowrap;
  line-height: 1;
}

/* About main visual balance refinement */
#about .about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
}

#about .about-visual img.about-visual-img,
#about .about-visual .about-person {
  width: min(460px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
}

#about .clients-pill {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 7;
}

/* Softer Inria Sans typography */
body,
p,
.nav-link,
button,
input,
select,
textarea,
a {
  font-family: "Inria Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.about-content h2,
.section-title,
h1,
h2,
.section-heading h2,
.contact-content h2,
.footer-brand h3 {
  font-family: "Inria Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.8px;
}

#about .about-content h2 {
  font-weight: 400;
}

.about-label,
.section-tag,
.section-label,
.label,
.eyebrow {
  font-family: "Inria Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
}

h3,
h4,
.service-card h3,
.showcase-card h3,
.why-card h3,
.footer-link-title {
  font-family: "Inria Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* Restored stable hero card stack animation */
#home .animated-card-stack {
  position: relative;
  max-width: 1180px;
  height: 340px;
  margin: 58px auto 42px;
  overflow: visible;
  perspective: 1200px;
}

#home .card-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform:
    translate3d(var(--x), var(--y), 0)
    rotate(var(--r))
    scale(1);
  animation: cardRevealStable 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

#home .layer-investor {
  width: 285px;
  z-index: 1;
  --x: -510px;
  --y: -20px;
  --r: -5deg;
  animation-delay: 0.04s;
}

#home .layer-sales {
  width: 330px;
  z-index: 3;
  --x: -330px;
  --y: -45px;
  --r: 1deg;
  animation-delay: 0.10s;
}

#home .layer-company {
  width: 455px;
  z-index: 6;
  --x: -225px;
  --y: -65px;
  --r: 0deg;
  animation-delay: 0.16s;
}

#home .layer-product {
  width: 330px;
  z-index: 4;
  --x: 205px;
  --y: -40px;
  --r: -1deg;
  animation-delay: 0.22s;
}

#home .layer-financial {
  width: 300px;
  z-index: 2;
  --x: 420px;
  --y: -20px;
  --r: 4deg;
  animation-delay: 0.28s;
}

#home .floating-chip {
  position: absolute;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  color: #111222;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  animation: none;
}

#home .floating-chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB000, #FF6A00);
}

#home .chip-sales {
  left: -30px;
  bottom: 92px;
  transform: rotate(-3deg);
}

#home .chip-startup {
  right: -35px;
  bottom: 82px;
  transform: rotate(4deg);
}

#home .chip-investor {
  left: 80px;
  top: -45px;
  transform: rotate(-4deg);
}

#home .chip-corporate {
  right: 85px;
  top: -42px;
  transform: rotate(5deg);
}

@media (max-width: 768px) {
  #home .animated-card-stack {
    height: auto;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 16px 35px;
    margin: 38px auto 28px;
    perspective: none;
  }

  #home .card-layer {
    position: static;
    width: 280px !important;
    flex: 0 0 auto;
    opacity: 1;
    animation: none;
    transform: none !important;
  }

  #home .floating-chip {
    display: none;
  }
}

/* Restore bold non-italic hero heading */
.hero-title,
.hero h1 {
  font-family: "Inter", "Poppins", "Satoshi", "Plus Jakarta Sans", Arial, sans-serif;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -2px;
  line-height: 0.98;
  color: #050505;
}

.hero-title {
  font-size: clamp(48px, 6vw, 88px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Final hero typography restore */
.hero-title,
.hero h1 {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", "Satoshi", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 900 !important;
  font-size: clamp(54px, 6.4vw, 92px) !important;
  line-height: 0.96 !important;
  letter-spacing: -3px !important;
  color: #050505 !important;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 24px;
}

.hero-subtext,
.hero p {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", "Satoshi", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  color: #5f5f5f !important;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-title,
  .hero h1 {
    font-size: clamp(40px, 11vw, 58px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.6px !important;
  }

  .hero-subtext,
  .hero p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    max-width: 92%;
  }
}

/* Final balanced hero font lock */
.hero-title,
.hero-title span,
.hero h1,
#home h1 {
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: clamp(48px, 6vw, 88px) !important;
  line-height: 0.98 !important;
  letter-spacing: -2px !important;
  color: #050505 !important;
  text-align: center !important;
  max-width: 920px !important;
  margin: 0 auto 24px !important;
  text-transform: none !important;
}

.hero-subtext,
.hero .hero-subtext,
#home .hero-subtext {
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  color: #5d5d5d !important;
  text-align: center !important;
  max-width: 780px !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .hero-title,
  .hero-title span,
  .hero h1,
  #home h1 {
    font-size: clamp(40px, 11vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: -1.4px !important;
    font-weight: 800 !important;
  }

  .hero-subtext,
  #home .hero-subtext {
    font-size: 15px !important;
    line-height: 1.55 !important;
    max-width: 92% !important;
  }
}

/* Premium services section */
.services-section {
  padding: 118px 24px 108px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 179, 71, 0.12), transparent 34%),
    #faf8f5;
  overflow: hidden;
}

.services-container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.services-header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff7a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
}

.services-header h2 {
  margin: 0;
  color: #0d0f14;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -2.8px;
  line-height: 0.98;
}

.services-header p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #555b66;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-service-card {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 26px;
  min-height: 238px;
  padding: 28px 30px;
  border: 1px solid #ece7e2;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-service-card:nth-child(1) { transition-delay: 0.04s; }
.premium-service-card:nth-child(2) { transition-delay: 0.08s; }
.premium-service-card:nth-child(3) { transition-delay: 0.12s; }
.premium-service-card:nth-child(4) { transition-delay: 0.16s; }
.premium-service-card:nth-child(5) { transition-delay: 0.20s; }
.premium-service-card:nth-child(6) { transition-delay: 0.24s; }

.premium-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.22);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.11);
}

.service-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}

.service-icon-badge {
  position: absolute;
  top: -4px;
  left: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.18), rgba(255, 122, 0, 0.10));
  box-shadow: inset 0 0 0 6px rgba(255, 122, 0, 0.05);
}

.service-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: #ff7a00;
}

.service-thumb {
  width: 150px;
  height: 112px;
  margin-top: 70px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.08);
  overflow: hidden;
}

.service-thumb img {
  width: 132px;
  max-height: 90px;
  object-fit: contain;
  transform: rotate(-5deg);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-thumb.dark img {
  width: 136px;
}

.premium-service-card:hover .service-thumb img {
  transform: rotate(-3deg) scale(1.06);
}

.training-thumb {
  justify-items: start;
  align-content: center;
  padding: 18px;
  text-align: left;
  transform: rotate(-4deg);
}

.training-thumb span {
  color: #ff7a00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.training-thumb strong {
  margin-top: 8px;
  color: #111;
  font-size: 17px;
  line-height: 1.1;
}

.training-thumb em {
  width: 72%;
  height: 8px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, #ff7a00);
}

.service-copy h3 {
  margin: 4px 0 16px;
  color: #0f1115;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.8px;
  line-height: 1.12;
}

.service-copy p {
  min-height: 86px;
  margin: 0;
  color: #4f5663;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: #ff5f00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-copy a span {
  transition: transform 0.25s ease;
}

.premium-service-card:hover .service-copy a {
  gap: 18px;
  color: #df4e00;
}

.premium-service-card:hover .service-copy a span {
  transform: translateX(3px);
}

.services-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid #ece7e2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 4px 24px;
}

.benefit-item:not(:last-child) {
  border-right: 1px solid #ded8d1;
}

.benefit-item > span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.10);
  color: #ff7a00;
  font-size: 26px;
  font-weight: 800;
}

.benefit-item strong {
  display: block;
  color: #101113;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.benefit-item p {
  margin: 7px 0 0;
  color: #4f5663;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.js-ready .services-header.reveal,
.js-ready .premium-service-card.reveal,
.js-ready .services-benefit-strip.reveal {
  transform: translateY(24px);
}

.js-ready .services-header.reveal.visible,
.js-ready .premium-service-card.reveal.visible,
.js-ready .services-benefit-strip.reveal.visible {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .premium-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .benefit-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 760px) {
  .services-section {
    padding: 86px 18px;
  }

  .services-header {
    margin-bottom: 38px;
  }

  .services-header h2 {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: -1.6px;
    line-height: 1.04;
  }

  .services-header p {
    font-size: 16px;
  }

  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-service-card {
    grid-template-columns: 128px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px 22px;
    border-radius: 22px;
  }

  .service-thumb {
    width: 122px;
    height: 96px;
    margin-top: 62px;
  }

  .service-thumb img {
    width: 110px;
  }

  .service-copy h3 {
    font-size: 21px;
  }

  .service-copy p {
    min-height: 0;
    font-size: 15px;
  }

  .services-benefit-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .benefit-item {
    padding: 18px 0;
  }

  .benefit-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #ded8d1;
  }
}

@media (max-width: 520px) {
  .premium-service-card {
    grid-template-columns: 1fr;
  }

  .service-media {
    min-height: 156px;
  }
}

/* Services heading weight refinement */
.services-section .section-title,
.services-title,
#services h2 {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(44px, 5vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -1.8px !important;
  color: #111111 !important;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.services-section .section-subtitle,
.services-subtitle,
#services .section-subtitle,
#services .services-header p {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #5f6675 !important;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Final service card title weight refinement */
.service-card h3,
.service-card h4,
.services-card h3,
.services-card h4,
.premium-service-card h3,
.premium-service-card h4,
.service-title,
.services-card-title {
  font-weight: 600 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.18 !important;
}

/* Service thumbnail size refinement */
.premium-service-card,
.service-card {
  overflow: hidden;
}

.premium-service-card {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.service-card-image,
.service-image,
.service-thumb {
  width: 100%;
  max-width: 230px;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff8f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img,
.service-image img,
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  transition: transform 0.35s ease;
}

.premium-service-card:hover .service-thumb img,
.service-card:hover .service-card-image img,
.service-card:hover .service-image img,
.service-card:hover .service-thumb img {
  transform: scale(1.18);
}

@media (max-width: 768px) {
  .premium-service-card,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card-image,
  .service-image,
  .service-thumb {
    max-width: 100%;
    height: 190px;
  }
}

/* True final Services reference-match override */
#services.services-section {
  padding: 110px 24px !important;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 122, 0, 0.14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 176, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%) !important;
  overflow: hidden;
}

#services .services-title,
#services h2.services-title {
  max-width: 1320px !important;
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-size: clamp(44px, 4.2vw, 68px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: -2px !important;
  color: #07111f !important;
  text-align: center !important;
  margin: 0 auto !important;
}

#services .services-title span {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .services-subtitle {
  max-width: 720px !important;
  margin: 22px auto 0 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #5f6675 !important;
}

#services .services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

#services .service-card {
  min-height: 318px !important;
  display: grid !important;
  grid-template-columns: 46% 54% !important;
  gap: 18px !important;
  align-items: center !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 122, 0, 0.14) !important;
  box-shadow: 0 22px 60px rgba(19, 19, 19, 0.08) !important;
  overflow: hidden !important;
}

#services .service-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(255, 122, 0, 0.32) !important;
  box-shadow: 0 30px 80px rgba(255, 122, 0, 0.16) !important;
}

#services .service-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  margin-bottom: 16px !important;
  background: #fff1e3 !important;
  color: #ff6a00 !important;
}

#services .service-card h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.7px !important;
  color: #07111f !important;
  margin: 0 0 14px !important;
}

#services .service-card p {
  font-size: 14px !important;
  line-height: 1.48 !important;
  color: #4f5867 !important;
  margin: 0 0 16px !important;
}

#services .service-card a {
  font-size: 14px !important;
  color: #ff6a00 !important;
  font-weight: 800 !important;
}

#services .service-card-image {
  width: 100% !important;
  max-width: none !important;
  height: 196px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border-radius: 0 !important;
}

#services .service-card-image img {
  width: 118% !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 214px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.15)) !important;
  transform: rotate(-3deg) translateX(4px) scale(1) !important;
  transition: transform 0.4s ease, filter 0.4s ease !important;
}

#services .service-card:hover .service-card-image img {
  transform: rotate(-1deg) translateY(-8px) translateX(4px) scale(1.05) !important;
}

#services .features-strip {
  margin-top: 34px !important;
  padding: 28px 34px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(255, 122, 0, 0.13) !important;
  box-shadow: 0 24px 70px rgba(19, 19, 19, 0.08) !important;
}

#services .benefit-item {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding-right: 24px !important;
  border-right: 1px solid rgba(17, 17, 17, 0.12) !important;
}

#services .benefit-item:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}

#services .benefit-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #fff1e3 !important;
  color: #ff6a00 !important;
  flex-shrink: 0 !important;
}

#services .benefit-item h4 {
  margin: 0 0 6px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #07111f !important;
}

#services .benefit-item p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #5f6675 !important;
}

@media (max-width: 1100px) {
  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #services .features-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 32px !important;
  }

  #services .benefit-item:nth-child(2) {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  #services.services-section {
    padding: 80px 16px !important;
  }

  #services .services-title,
  #services h2.services-title {
    font-size: clamp(36px, 10vw, 50px) !important;
    line-height: 1.04 !important;
    letter-spacing: -1.4px !important;
  }

  #services .services-grid {
    grid-template-columns: 1fr !important;
  }

  #services .service-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  #services .service-card-image {
    order: -1;
    height: 210px !important;
  }

  #services .features-strip {
    grid-template-columns: 1fr !important;
    border-radius: 28px !important;
    padding: 24px !important;
  }

  #services .benefit-item,
  #services .benefit-item:nth-child(2) {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

/* Services section final reference-match layer */
#services.services-section {
  position: relative;
  padding: 110px 24px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 122, 0, 0.14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 176, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  overflow: hidden;
}

#services.services-section::before,
#services.services-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#services.services-section::before {
  left: -74px;
  top: 128px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 176, 0, 0.10) 0 42%, transparent 43%),
    radial-gradient(circle, rgba(255, 106, 0, 0.20) 1.4px, transparent 1.5px);
  background-size: 100% 100%, 13px 13px;
  opacity: 0.9;
}

#services.services-section::after {
  right: -90px;
  bottom: -92px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 176, 0, 0.035);
}

#services .services-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#services .services-container::before,
#services .services-container::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.38) 1.8px, transparent 1.9px);
  background-size: 13px 13px;
  opacity: 0.6;
  pointer-events: none;
}

#services .services-container::before {
  left: -70px;
  top: -48px;
}

#services .services-container::after {
  right: -68px;
  bottom: 16px;
}

#services .services-header {
  text-align: center;
  margin: 0 auto 54px;
}

#services .services-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

#services .services-label i {
  display: block;
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6a00);
  position: relative;
}

#services .services-label i:last-child {
  background: linear-gradient(90deg, #ff6a00, transparent);
}

#services .services-label i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6a00;
  transform: translateY(-50%);
}

#services .services-label i:first-child::after {
  right: -2px;
}

#services .services-label i:last-child::after {
  left: -2px;
}

#services .services-title,
#services h2.services-title {
  max-width: 920px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-size: clamp(48px, 5vw, 78px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -2.4px !important;
  line-height: 0.96 !important;
  color: #07111f !important;
}

#services .services-title span {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .services-subtitle {
  max-width: 720px !important;
  margin: 22px auto 0 !important;
  text-align: center !important;
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #5f6675 !important;
}

#services .services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

#services .service-card {
  min-height: 270px !important;
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 26px !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 122, 0, 0.14) !important;
  box-shadow: 0 22px 60px rgba(19, 19, 19, 0.08) !important;
  overflow: hidden !important;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

#services .service-card::before {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -76px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.15), transparent 68%);
  z-index: -1;
}

#services .service-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(255, 122, 0, 0.32) !important;
  box-shadow: 0 30px 80px rgba(255, 122, 0, 0.16) !important;
}

#services .service-card-content {
  position: relative;
  z-index: 3;
  min-width: 0;
}

#services .service-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: #fff1e3 !important;
  color: #ff6a00 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.18), 0 12px 24px rgba(255, 122, 0, 0.10) !important;
  margin-bottom: 22px !important;
  animation: serviceIconFloat 4.8s ease-in-out infinite;
}

#services .service-icon svg,
#services .benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  display: block;
}

#services .service-card h3 {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.7px !important;
  color: #07111f !important;
  margin: 0 0 18px !important;
}

#services .service-card p {
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #4f5867 !important;
  margin: 0 0 22px !important;
}

#services .service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

#services .service-card a span {
  transition: transform 0.3s ease;
}

#services .service-card:hover a {
  gap: 16px;
  color: #ec5f00;
}

#services .service-card:hover a span {
  transform: translateX(3px);
}

#services .service-card-image {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: 218px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border-radius: 0 !important;
}

#services .service-card-image img {
  width: 124% !important;
  max-width: 360px !important;
  height: auto !important;
  max-height: 238px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.15)) !important;
  transform: rotate(-3deg) translateX(4px) scale(1) !important;
  transition: transform 0.4s ease, filter 0.4s ease !important;
}

#services .service-card:hover .service-card-image img {
  transform: rotate(-1deg) translateY(-8px) translateX(4px) scale(1.05) !important;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.18)) !important;
}

#services .features-strip {
  margin-top: 36px !important;
  padding: 28px 34px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(255, 122, 0, 0.13) !important;
  box-shadow: 0 24px 70px rgba(19, 19, 19, 0.08) !important;
}

#services .feature-item,
#services .benefit-item {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding-right: 24px !important;
  border-right: 1px solid rgba(17, 17, 17, 0.12) !important;
  transition: transform 0.3s ease;
}

#services .feature-item:last-child,
#services .benefit-item:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}

#services .benefit-item:hover {
  transform: translateY(-3px);
}

#services .benefit-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #fff1e3 !important;
  color: #ff6a00 !important;
  flex-shrink: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.14) !important;
}

#services .benefit-item h4 {
  margin: 0 0 6px !important;
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #07111f !important;
}

#services .benefit-item p {
  margin: 0 !important;
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #5f6675 !important;
}

.js-ready #services .services-header.reveal,
.js-ready #services .service-card.reveal,
.js-ready #services .features-strip.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready #services .services-header.reveal.visible,
.js-ready #services .service-card.reveal.visible,
.js-ready #services .features-strip.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#services .service-card:nth-child(1) { transition-delay: 0.04s; }
#services .service-card:nth-child(2) { transition-delay: 0.10s; }
#services .service-card:nth-child(3) { transition-delay: 0.16s; }
#services .service-card:nth-child(4) { transition-delay: 0.22s; }
#services .service-card:nth-child(5) { transition-delay: 0.28s; }
#services .service-card:nth-child(6) { transition-delay: 0.34s; }

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

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

@media (max-width: 1100px) {
  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #services .features-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 32px !important;
  }

  #services .benefit-item:nth-child(2) {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  #services.services-section {
    padding: 80px 16px !important;
  }

  #services .services-label {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  #services .services-label i {
    width: 42px;
  }

  #services .services-title,
  #services h2.services-title {
    font-size: clamp(38px, 11vw, 52px) !important;
    letter-spacing: -1.6px !important;
    line-height: 1.02 !important;
  }

  #services .services-subtitle {
    font-size: 16px !important;
    margin-top: 18px !important;
  }

  #services .services-grid {
    grid-template-columns: 1fr !important;
  }

  #services .service-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 24px !important;
  }

  #services .service-card-image {
    height: 214px !important;
    order: -1;
  }

  #services .service-card-image img {
    width: 100% !important;
    max-width: 340px !important;
    max-height: 230px !important;
    transform: rotate(-2deg) !important;
  }

  #services .service-card:hover .service-card-image img {
    transform: rotate(-1deg) translateY(-4px) scale(1.03) !important;
  }

  #services .features-strip {
    grid-template-columns: 1fr !important;
    border-radius: 28px !important;
    padding: 24px !important;
  }

  #services .benefit-item,
  #services .benefit-item:nth-child(2) {
    border-right: none !important;
    padding-right: 0 !important;
  }

  #services .services-container::before,
  #services .services-container::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #services .service-icon {
    animation: none;
  }

  #services .service-card,
  #services .service-card-image img,
  #services .service-card a,
  #services .service-card a span,
  #services .benefit-item {
    transition: none !important;
  }
}

/* Services final proportion tuning */
#services .services-title,
#services h2.services-title {
  max-width: 1120px !important;
  font-size: clamp(44px, 4.5vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -2.2px !important;
}

#services .services-header {
  margin-bottom: 50px !important;
}

#services .service-card {
  min-height: 318px !important;
  grid-template-columns: 46% 54% !important;
  padding: 24px !important;
}

#services .service-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 15px !important;
  margin-bottom: 16px !important;
}

#services .service-icon svg {
  width: 23px !important;
  height: 23px !important;
}

#services .service-card h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
  margin-bottom: 14px !important;
}

#services .service-card p {
  font-size: 14px !important;
  line-height: 1.48 !important;
  margin-bottom: 16px !important;
}

#services .service-card a {
  font-size: 14px !important;
}

#services .service-card-image {
  height: 196px !important;
}

#services .service-card-image img {
  width: 118% !important;
  max-width: 320px !important;
  max-height: 214px !important;
}

#services .features-strip {
  margin-top: 34px !important;
}

@media (max-width: 768px) {
  #services .services-title,
  #services h2.services-title {
    max-width: 620px !important;
    font-size: clamp(36px, 10vw, 50px) !important;
    line-height: 1.04 !important;
  }

  #services .service-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  #services .service-card-image {
    height: 210px !important;
  }
}

/* Rebuilt premium Services section */
#services.services-section {
  position: relative;
  padding: 110px 24px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 122, 0, 0.14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 176, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  overflow: hidden;
}

#services.services-section::before,
#services.services-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

#services.services-section::before {
  left: -76px;
  top: 132px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 176, 0, 0.12) 0 42%, transparent 43%),
    radial-gradient(circle, rgba(255, 106, 0, 0.18) 1.4px, transparent 1.5px);
  background-size: 100% 100%, 13px 13px;
  opacity: 0.9;
}

#services.services-section::after {
  right: -90px;
  bottom: -94px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 176, 0, 0.035);
}

#services .services-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#services .services-container::before,
#services .services-container::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.42) 1.8px, transparent 1.8px);
  background-size: 13px 13px;
  opacity: 0.55;
  pointer-events: none;
}

#services .services-container::before {
  left: -70px;
  top: -48px;
}

#services .services-container::after {
  right: -70px;
  bottom: 12px;
}

#services .services-header {
  text-align: center;
  margin: 0 auto 52px;
}

#services .services-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

#services .services-label i {
  display: block;
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6a00);
  position: relative;
}

#services .services-label i:last-child {
  background: linear-gradient(90deg, #ff6a00, transparent);
}

#services .services-label i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6a00;
  transform: translateY(-50%);
}

#services .services-label i:first-child::after {
  right: -2px;
}

#services .services-label i:last-child::after {
  left: -2px;
}

#services .services-title,
#services h2.services-title {
  max-width: 880px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-size: clamp(44px, 5vw, 78px) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -2.5px !important;
  line-height: 0.95 !important;
  color: #07111f !important;
}

#services .services-title span {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .services-subtitle {
  max-width: 720px !important;
  margin: 22px auto 0 !important;
  text-align: center !important;
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #5f6675 !important;
}

#services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

#services .service-card {
  min-height: 265px;
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 122, 0, 0.14);
  box-shadow: 0 22px 60px rgba(19, 19, 19, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#services .service-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.14), transparent 68%);
  z-index: -1;
}

#services .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: 0 30px 80px rgba(255, 122, 0, 0.16);
}

#services .service-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

#services .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff1e3;
  color: #ff6a00;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.18), 0 12px 24px rgba(255, 122, 0, 0.10);
  margin-bottom: 22px;
  animation: serviceIconFloat 4.8s ease-in-out infinite;
}

#services .service-icon svg,
#services .benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  display: block;
}

#services .service-card h3 {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-size: 24px !important;
  line-height: 1.12 !important;
  font-weight: 700 !important;
  letter-spacing: -0.7px !important;
  color: #07111f !important;
  margin: 0 0 18px !important;
}

#services .service-card p {
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #4f5867 !important;
  margin: 0 0 22px !important;
}

#services .service-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

#services .service-card a span {
  transition: transform 0.3s ease;
}

#services .service-card a:hover,
#services .service-card:hover a {
  gap: 16px;
  color: #ec5f00;
}

#services .service-card:hover a span {
  transform: translateX(3px);
}

#services .service-image {
  position: relative;
  width: 100%;
  max-width: none;
  height: 218px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

#services .service-image img {
  width: 124%;
  max-width: 360px;
  height: auto;
  max-height: 238px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.15));
  transform: rotate(-3deg) translateX(4px) scale(1);
  transition: transform 0.4s ease, filter 0.4s ease;
}

#services .service-card:hover .service-image img {
  transform: rotate(-1deg) translateY(-8px) translateX(4px) scale(1.05);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.18));
}

#services .services-benefits {
  margin-top: 36px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 0, 0.13);
  box-shadow: 0 24px 70px rgba(19, 19, 19, 0.08);
}

#services .benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 24px;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

#services .benefit-item:last-child {
  border-right: none;
  padding-right: 0;
}

#services .benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff1e3;
  color: #ff6a00;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.14);
}

#services .benefit-item h4 {
  margin: 0 0 6px;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  color: #07111f;
}

#services .benefit-item p {
  margin: 0;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #5f6675;
}

.js-ready #services .services-header.reveal,
.js-ready #services .service-card.reveal,
.js-ready #services .services-benefits.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready #services .services-header.reveal.visible,
.js-ready #services .service-card.reveal.visible,
.js-ready #services .services-benefits.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#services .service-card:nth-child(1) { transition-delay: 0.04s; }
#services .service-card:nth-child(2) { transition-delay: 0.10s; }
#services .service-card:nth-child(3) { transition-delay: 0.16s; }
#services .service-card:nth-child(4) { transition-delay: 0.22s; }
#services .service-card:nth-child(5) { transition-delay: 0.28s; }
#services .service-card:nth-child(6) { transition-delay: 0.34s; }

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

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

@media (max-width: 1100px) {
  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #services .services-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 32px;
  }

  #services .benefit-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #services.services-section {
    padding: 80px 16px;
  }

  #services .services-label {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  #services .services-label i {
    width: 42px;
  }

  #services .services-title,
  #services h2.services-title {
    font-size: clamp(38px, 11vw, 52px) !important;
    letter-spacing: -1.6px !important;
    line-height: 1.02 !important;
  }

  #services .services-subtitle {
    font-size: 16px !important;
    margin-top: 18px !important;
  }

  #services .services-grid {
    grid-template-columns: 1fr;
  }

  #services .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  #services .service-image {
    height: 214px;
    order: -1;
  }

  #services .service-image img {
    width: 100%;
    max-width: 340px;
    max-height: 230px;
    transform: rotate(-2deg);
  }

  #services .service-card:hover .service-image img {
    transform: rotate(-1deg) translateY(-4px) scale(1.03);
  }

  #services .services-benefits {
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 24px;
  }

  #services .benefit-item,
  #services .benefit-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  #services .services-container::before,
  #services .services-container::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #services .service-icon {
    animation: none;
  }

  #services .service-card,
  #services .service-image img,
  #services .service-card a,
  #services .service-card a span {
    transition: none;
  }
}

/* Service card title weight refinement */
.service-card h3,
.service-card h4,
.services-card h3,
.services-card h4,
.premium-service-card h3,
.premium-service-card h4,
.service-title,
.services-card-title {
  font-weight: 600 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.18 !important;
}

/* Hero spacing and chip overlap refinement */
#home.hero {
  position: relative;
  padding: 120px 24px 90px;
  overflow: visible;
}

#home .hero-inner {
  text-align: center;
}

#home .hero-title {
  margin-bottom: 22px !important;
}

#home .hero-subtext {
  margin-bottom: 0 !important;
}

#home .animated-card-stack,
#home.hero .hero-visual {
  position: relative;
  max-width: 1180px;
  height: 360px;
  min-height: 0;
  margin: 42px auto 70px;
  overflow: visible;
  perspective: 1200px;
  display: block;
}

#home .card-layer {
  position: absolute;
  left: 50%;
  top: 50%;
}

#home .layer-investor {
  width: 270px;
  z-index: 1;
  --x: -500px;
  --y: -35px;
  --r: -5deg;
}

#home .layer-sales {
  width: 320px;
  z-index: 3;
  --x: -315px;
  --y: -60px;
  --r: 1deg;
}

#home .layer-company {
  width: 430px;
  z-index: 6;
  --x: -215px;
  --y: -82px;
  --r: 0deg;
}

#home .layer-product {
  width: 320px;
  z-index: 4;
  --x: 210px;
  --y: -55px;
  --r: -1deg;
}

#home .layer-financial {
  width: 290px;
  z-index: 2;
  --x: 420px;
  --y: -35px;
  --r: 4deg;
}

#home .hero-actions {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

#home .hero-actions .btn,
#home .hero-btn {
  position: relative;
  z-index: 31;
}

#home .floating-chip {
  position: absolute;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 700;
  color: #111222;
  white-space: nowrap;
  pointer-events: none;
}

#home .floating-chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB000, #FF6A00);
}

#home .chip-sales {
  left: -45px;
  top: 185px;
  transform: rotate(-3deg);
}

#home .chip-startup {
  right: -48px;
  top: 185px;
  transform: rotate(4deg);
}

#home .chip-investor {
  left: 90px;
  top: -35px;
  transform: rotate(-4deg);
}

#home .chip-corporate {
  right: 95px;
  top: -35px;
  transform: rotate(5deg);
}

@media (max-width: 768px) {
  #home.hero {
    padding: 100px 16px 70px;
  }

  #home .animated-card-stack,
  #home.hero .hero-visual {
    height: auto;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 16px 35px;
    margin: 30px auto 34px;
  }

  #home .card-layer {
    position: static;
    width: 280px !important;
    flex: 0 0 auto;
    transform: none !important;
    opacity: 1;
    animation: none;
  }

  #home .floating-chip {
    display: none;
  }

  #home .hero-actions {
    flex-direction: column;
    gap: 14px;
  }
}

/* Hero floating pill placement refinement */
#home .hero-floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  z-index: 25;
  pointer-events: none;
  animation: floatingPill 4.5s ease-in-out infinite;
}

#home .hero-floating-pill::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb000, #ff7a00);
  flex-shrink: 0;
}

@keyframes floatingPill {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

#home .pill-sales {
  left: -90px;
  top: 190px;
}

#home .pill-investor {
  left: 120px;
  top: 40px;
}

#home .pill-corporate {
  right: 130px;
  top: 55px;
}

#home .pill-startup {
  right: -90px;
  top: 190px;
}

#home .pill-business {
  left: 170px;
  bottom: -38px;
}

@media (max-width: 768px) {
  #home .hero-floating-pill {
    padding: 10px 16px;
    font-size: 13px;
    gap: 8px;
  }

  #home .hero-floating-pill::before {
    width: 9px;
    height: 9px;
  }

  #home .pill-investor {
    left: 10px;
    top: 20px;
  }

  #home .pill-sales {
    left: 8px;
    top: 110px;
  }

  #home .pill-corporate {
    right: 10px;
    top: 30px;
  }

  #home .pill-startup {
    right: 8px;
    top: 130px;
  }

#home .pill-business {
    left: 50%;
    bottom: 15px;
    translate: -50% 0;
  }
}

/* Hero card hover and floating animation */
#home .animated-card-stack {
  position: relative;
  max-width: 1180px;
  height: 360px;
  margin: 0 auto 76px;
  overflow: visible;
  perspective: 1200px;
}

#home .card-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform:
    translate3d(var(--x), var(--y), 0)
    rotate(var(--r))
    scale(1);
  animation: cardRevealStable 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

#home .card-float {
  width: 100%;
  animation: heroCardFloat 5.4s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

#home .card-hover {
  width: 100%;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: transform;
  backface-visibility: hidden;
}

#home .card-hover img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.12));
  backface-visibility: hidden;
  transform: translateZ(0);
}

#home .hero-visual:hover .card-hover {
  transform: translateY(-10px) scale(1.012);
}

#home .card-layer:hover .card-hover {
  transform: translateY(-16px) scale(1.025);
  filter: brightness(1.02);
}

#home .layer-investor {
  width: 270px;
  z-index: 1;
  --x: -500px;
  --y: -35px;
  --r: -5deg;
  animation-delay: 0.04s;
}

#home .layer-sales {
  width: 320px;
  z-index: 3;
  --x: -315px;
  --y: -60px;
  --r: 1deg;
  animation-delay: 0.10s;
}

#home .layer-company {
  width: 430px;
  z-index: 6;
  --x: -215px;
  --y: -82px;
  --r: 0deg;
  animation-delay: 0.16s;
}

#home .layer-product {
  width: 320px;
  z-index: 4;
  --x: 210px;
  --y: -55px;
  --r: -1deg;
  animation-delay: 0.22s;
}

#home .layer-financial {
  width: 290px;
  z-index: 2;
  --x: 420px;
  --y: -35px;
  --r: 4deg;
  animation-delay: 0.28s;
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@media (max-width: 768px) {
  #home .animated-card-stack {
    height: auto;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 16px 35px;
    margin: 0 auto 34px;
  }

  #home .card-layer {
    position: static;
    width: 280px !important;
    flex: 0 0 auto;
    opacity: 1;
    animation: none;
    transform: none !important;
  }

  #home .card-float {
    animation: none;
  }

  #home .card-hover,
  #home .hero-visual:hover .card-hover,
  #home .card-layer:hover .card-hover {
    transform: none;
  }
}

/* Final Services heading weight refinement */
.services-section .section-title,
.services-title,
#services h2 {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: clamp(44px, 5vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -1.8px !important;
  color: #111111 !important;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.services-section .section-subtitle,
.services-subtitle,
#services .section-subtitle,
#services .services-header p {
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #5f6675 !important;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Final service card title weight refinement */
.service-card h3,
.service-card h4,
.services-card h3,
.services-card h4,
.premium-service-card h3,
.premium-service-card h4,
.service-title,
.services-card-title {
  font-weight: 600 !important;
  letter-spacing: -0.6px !important;
  line-height: 1.18 !important;
}

/* Final service thumbnail size refinement */
.premium-service-card,
.service-card {
  overflow: hidden;
}

.premium-service-card {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.service-card-image,
.service-image,
.service-thumb {
  width: 100%;
  max-width: 230px;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff8f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img,
.service-image img,
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  transition: transform 0.35s ease;
}

.premium-service-card:hover .service-thumb img,
.service-card:hover .service-card-image img,
.service-card:hover .service-image img,
.service-card:hover .service-thumb img {
  transform: scale(1.18);
}

@media (max-width: 768px) {
  .premium-service-card,
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card-image,
  .service-image,
  .service-thumb {
    max-width: 100%;
    height: 190px;
  }
}

/* Services true EOF override */
#services .services-title,
#services h2.services-title {
  max-width: 1320px !important;
  font-size: clamp(44px, 4.2vw, 68px) !important;
  line-height: 0.98 !important;
  letter-spacing: -2px !important;
  font-weight: 800 !important;
  color: #07111f !important;
}

#services .service-card {
  min-height: 318px !important;
  grid-template-columns: 46% 54% !important;
  padding: 24px !important;
}

#services .service-icon {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 16px !important;
}

#services .service-card h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
  margin-bottom: 14px !important;
}

#services .service-card p {
  font-size: 14px !important;
  line-height: 1.48 !important;
  margin-bottom: 16px !important;
}

#services .service-card-image {
  max-width: none !important;
  height: 196px !important;
  background: transparent !important;
  overflow: visible !important;
}

#services .service-card-image img {
  width: 118% !important;
  max-width: 320px !important;
  height: auto !important;
  max-height: 214px !important;
  transform: rotate(-3deg) translateX(4px) scale(1) !important;
}

#services .service-card:hover .service-card-image img {
  transform: rotate(-1deg) translateY(-8px) translateX(4px) scale(1.05) !important;
}

#services .features-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  #services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #services .features-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 32px !important;
  }
}

@media (max-width: 768px) {
  #services .services-title,
  #services h2.services-title {
    font-size: clamp(36px, 10vw, 50px) !important;
    line-height: 1.04 !important;
  }

  #services .services-grid {
    grid-template-columns: 1fr !important;
  }

  #services .service-card {
    grid-template-columns: 1fr !important;
  }

  #services .service-card-image {
    order: -1;
    height: 210px !important;
  }

  #services .features-strip {
    grid-template-columns: 1fr !important;
    border-radius: 28px !important;
  }
}

/* Services image fit polish */
#services .service-card-image img {
  width: 112% !important;
  max-width: 300px !important;
  transform: rotate(-3deg) translateX(-4px) scale(1) !important;
}

#services .service-card:hover .service-card-image img {
  transform: rotate(-1deg) translateY(-8px) translateX(-4px) scale(1.05) !important;
}

/* Interactive Services showcase section */
.services-showcase-section {
  position: relative;
  padding: 110px 24px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 176, 0, 0.16), transparent 22%),
    radial-gradient(circle at 96% 8%, rgba(255, 122, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  overflow: hidden;
}

.services-showcase-section::before,
.services-showcase-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.services-showcase-section::before {
  left: -96px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 62px solid rgba(255, 176, 0, 0.16);
}

.services-showcase-section::after {
  right: -120px;
  top: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.18);
  box-shadow:
    inset 0 0 0 38px transparent,
    inset 0 0 0 74px rgba(255, 122, 0, 0.035),
    inset 0 0 0 112px transparent,
    inset 0 0 0 148px rgba(255, 176, 0, 0.03);
}

.services-showcase-container {
  width: min(1400px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-showcase-container::before,
.services-showcase-container::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.42) 1.8px, transparent 1.8px);
  background-size: 16px 16px;
  opacity: 0.58;
  pointer-events: none;
}

.services-showcase-container::before {
  left: -54px;
  top: 34px;
}

.services-showcase-container::after {
  right: -38px;
  bottom: 156px;
}

.services-showcase-header {
  text-align: center;
  margin-bottom: 34px;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.services-kicker i {
  position: relative;
  display: block;
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6a00);
}

.services-kicker i:last-child {
  background: linear-gradient(90deg, #ff6a00, transparent);
}

.services-kicker i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6a00;
  transform: translateY(-50%);
}

.services-kicker i:first-child::after {
  right: -2px;
}

.services-kicker i:last-child::after {
  left: -2px;
}

.services-main-title {
  max-width: 930px;
  margin: 0 auto;
  font-family: "Inter", "Poppins", "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 800;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -2.2px;
  color: #07111f;
  text-align: center;
}

.services-main-title span {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-main-subtitle {
  max-width: 720px;
  margin: 22px auto 0;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.62;
  color: #5f6675;
  text-align: center;
}

.services-showcase-box {
  display: grid;
  grid-template-columns: minmax(360px, 32%) 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 122, 0, 0.16);
  box-shadow: 0 26px 80px rgba(17, 18, 34, 0.08);
  backdrop-filter: blur(16px);
}

.services-tabs {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 18, 34, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.service-tab {
  position: relative;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 46px 64px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid rgba(17, 18, 34, 0.09);
  background: #ffffff;
  color: #07111f;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ffb000, #ff6a00);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-tab:hover,
.service-tab.active {
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.14), rgba(255, 106, 0, 0.08));
}

.service-tab.active::before {
  opacity: 1;
}

.service-tab-number {
  font-size: 21px;
  font-weight: 800;
  color: #7a8191;
}

.service-tab.active .service-tab-number {
  color: #ff6a00;
}

.service-tab-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff7ef;
  border: 1px solid rgba(255, 122, 0, 0.14);
  color: #ff6a00;
  box-shadow: 0 12px 24px rgba(17, 18, 34, 0.06);
}

.service-tab-icon.blue { color: #2587ff; }
.service-tab-icon.purple { color: #7447ff; }
.service-tab-icon.green { color: #18b46f; }
.service-tab-icon.pink { color: #ff3f79; }

.service-tab-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-tab-copy {
  min-width: 0;
}

.service-tab-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: #07111f;
  margin-bottom: 5px;
}

.service-tab-copy small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #5f6675;
}

.service-tab-arrow {
  font-size: 32px;
  line-height: 1;
  color: #737b8b;
  transition: transform 0.25s ease, color 0.25s ease;
}

.service-tab:hover .service-tab-arrow,
.service-tab.active .service-tab-arrow {
  color: #ff6a00;
  transform: translateX(5px);
}

.featured-service-panel {
  position: relative;
  min-height: 522px;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 20px;
  padding: 46px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 176, 0, 0.48), transparent 28%),
    radial-gradient(circle at 90% 98%, rgba(255, 106, 0, 0.34), transparent 32%),
    linear-gradient(135deg, #fffaf5 0%, #fff1df 58%, #ffd29c 100%);
}

.featured-service-panel::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 36px;
  width: 62px;
  height: 62px;
  background-image: radial-gradient(rgba(255, 106, 0, 0.55) 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  opacity: 0.65;
}

.featured-content {
  position: relative;
  z-index: 4;
  max-width: 420px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.featured-badge b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 18, 34, 0.08);
}

.featured-title {
  margin: 0 0 18px;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 46px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #07111f;
}

.featured-description {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.65;
  color: #4d5667;
}

.featured-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 34px;
}

.featured-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 122, 0, 0.12);
  box-shadow: 0 12px 28px rgba(17, 18, 34, 0.07);
  font-size: 14px;
  font-weight: 700;
  color: #07111f;
}

.featured-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb000, #ff6a00);
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(255, 106, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(255, 106, 0, 0.36);
}

.featured-visual {
  position: relative;
  z-index: 3;
  min-height: 405px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-visual-img {
  width: min(510px, 100%);
  max-height: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 42px rgba(17, 18, 34, 0.22));
  transform: rotate(-5deg) translate(6px, -26px);
  transition: opacity 0.28s ease, transform 0.42s ease;
  animation: featuredMockupFloat 5.8s ease-in-out infinite;
}

.featured-service-panel.is-switching .featured-visual-img,
.featured-service-panel.is-switching .featured-content {
  opacity: 0;
  transform: translateY(10px);
}

.market-card {
  position: absolute;
  right: 70px;
  bottom: 70px;
  width: 310px;
  padding: 24px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 122, 0, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transform: rotate(4deg);
  z-index: 6;
  pointer-events: none;
  animation: marketFloat 5s ease-in-out infinite;
}

.market-card small {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #07111f;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.market-card strong {
  display: block;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: #ff6a00;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.market-card span {
  font-size: 16px;
  font-weight: 700;
  color: #5f6675;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 122, 0, 0.13);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  color: #07111f;
  font-size: 13px;
  font-weight: 800;
  z-index: 7;
  pointer-events: none;
  animation: servicePreviewChipFloat 4.6s ease-in-out infinite;
}

.float-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  flex-shrink: 0;
}

.chip-growth {
  top: 54px;
  right: 82px;
  animation-delay: 0.2s;
}

.chip-funding {
  left: 26px;
  bottom: 0;
  animation-delay: 0.5s;
}

.chip-trust {
  right: 42px;
  top: 112px;
  animation-delay: 0.8s;
}

.services-benefits-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 28px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 0, 0.14);
  box-shadow: 0 24px 70px rgba(17, 18, 34, 0.08);
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 34px;
  border-right: 1px solid rgba(17, 18, 34, 0.12);
  transition: transform 0.3s ease;
}

.benefit-card:first-child {
  padding-left: 18px;
}

.benefit-card:last-child {
  border-right: 0;
  padding-right: 18px;
}

.benefit-card:hover {
  transform: translateY(-3px);
}

.benefit-card-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e3;
  color: #ff6a00;
  flex-shrink: 0;
}

.benefit-card-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.benefit-card h4 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: #07111f;
}

.benefit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f6675;
}

.js-ready .services-showcase-header.reveal,
.js-ready .services-showcase-box.reveal,
.js-ready .services-benefits-strip.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .services-showcase-header.reveal.visible,
.js-ready .services-showcase-box.reveal.visible,
.js-ready .services-benefits-strip.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .services-showcase-box.reveal.visible .service-tab {
  animation: serviceTabSlide 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(1) { animation-delay: 0.04s; }
.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(2) { animation-delay: 0.09s; }
.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(3) { animation-delay: 0.14s; }
.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(4) { animation-delay: 0.19s; }
.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(5) { animation-delay: 0.24s; }
.js-ready .services-showcase-box.reveal.visible .service-tab:nth-child(6) { animation-delay: 0.29s; }

@keyframes serviceTabSlide {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

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

@keyframes featuredMockupFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes marketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

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

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

@media (max-width: 1180px) {
  .services-showcase-box {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-tab {
    border-right: 1px solid rgba(17, 18, 34, 0.08);
  }

  .service-tab:nth-child(2n) {
    border-right: 0;
  }

  .featured-service-panel {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (max-width: 820px) {
  .services-showcase-section {
    padding: 82px 16px;
  }

  .services-kicker {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .services-kicker i {
    width: 42px;
  }

  .services-main-title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.04;
    letter-spacing: -1.4px;
  }

  .services-main-subtitle {
    font-size: 16px;
  }

  .services-showcase-box {
    padding: 12px;
    border-radius: 24px;
  }

  .services-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    grid-template-columns: 42px 54px 1fr 20px;
    min-height: 78px;
    padding: 13px 14px;
    border-right: 0;
  }

  .service-tab-icon {
    width: 46px;
    height: 46px;
  }

  .featured-service-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px 34px;
  }

  .featured-chips {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .featured-visual {
    min-height: 300px;
    flex-direction: column;
  }

  .featured-visual-img {
    width: min(360px, 92%);
    transform: rotate(-4deg);
  }

  .float-chip {
    display: none;
  }

  .market-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 100%);
    max-width: 320px;
    margin: 18px auto 0;
    transform: none;
    animation: none;
  }

  .services-benefits-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .benefit-card,
  .benefit-card:first-child,
  .benefit-card:last-child {
    padding: 0;
    border-right: 0;
  }
}

/* Dark Portfolio Showcase carousel */
.portfolio-showcase-dark {
  position: relative;
  padding: 105px 24px 85px;
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 122, 0, 0.14), transparent 36%),
    radial-gradient(circle at 8% 18%, rgba(255, 176, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  color: #07111f;
  overflow: hidden;
}

.portfolio-showcase-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 122, 0, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  pointer-events: none;
}

.portfolio-showcase-dark::after {
  content: "";
  position: absolute;
  right: -165px;
  top: -145px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 54px transparent,
    inset 0 0 0 96px rgba(255, 122, 0, 0.035),
    inset 0 0 0 150px transparent;
  pointer-events: none;
}

.portfolio-bg-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 560px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 65%);
  filter: blur(45px);
  opacity: 0.8;
  pointer-events: none;
}

.portfolio-dark-header {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.portfolio-dark-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 999px;
  color: #ff6a00;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 5px;
  background: rgba(255, 122, 0, 0.06);
}

.portfolio-dark-header h2 {
  margin: 24px 0 18px;
  font-family: "Inria Sans", "Inter", Arial, sans-serif;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.92;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -3px;
}

.portfolio-dark-header h2 span {
  color: #07111f;
  font-weight: 400;
}

.portfolio-dark-header h2 strong {
  font-weight: 700;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-dark-header p {
  max-width: 780px;
  margin: 0 auto;
  color: #5f6675;
  font-size: 18px;
  line-height: 1.7;
}

.portfolio-carousel-wrap {
  position: relative;
  z-index: 3;
  max-width: 1550px;
  margin: 0 auto;
}

.portfolio-carousel-stage {
  position: relative;
  height: 430px;
  perspective: 1500px;
  overflow: visible;
}

.portfolio-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(650px, 45vw);
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(255, 122, 0, 0.10);
  transform-style: preserve-3d;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
}

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

.portfolio-slide.is-active {
  opacity: 1;
  z-index: 6;
  filter: brightness(1);
  transform: translateX(-50%) translateZ(0) rotateY(0deg) scale(1);
}

.portfolio-slide.is-left {
  opacity: 0.82;
  z-index: 4;
  filter: brightness(0.88);
  transform: translateX(-108%) rotateY(22deg) scale(0.86);
}

.portfolio-slide.is-right {
  opacity: 0.82;
  z-index: 4;
  filter: brightness(0.88);
  transform: translateX(8%) rotateY(-22deg) scale(0.86);
}

.portfolio-slide.is-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translateX(-50%) scale(0.68);
}

.portfolio-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 10;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.5);
  background: rgba(255, 255, 255, 0.8);
  color: #07111f;
  font-size: 54px;
  line-height: 0.85;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition: 0.3s ease;
}

.portfolio-arrow:hover {
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.28);
}

.portfolio-prev {
  left: 18px;
}

.portfolio-next {
  right: 18px;
}

.portfolio-dots {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.portfolio-dot {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #ffc08b;
  opacity: 0.78;
  cursor: pointer;
  transition: 0.3s ease;
}

.portfolio-dot.active {
  background: #ff6a00;
  opacity: 1;
  transform: scale(1.25);
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.6);
}

.portfolio-benefits {
  position: relative;
  z-index: 3;
  max-width: 1350px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 0, 0.14);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(12px);
}

.portfolio-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.portfolio-benefit:last-child {
  border-right: none;
}

.portfolio-showcase-dark .benefit-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 0, 0.28);
  background: #fff1e3;
  color: #ff6a00;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: inset 0 0 20px rgba(255, 122, 0, 0.08);
}

.portfolio-benefit h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #07111f;
}

.portfolio-benefit p {
  margin: 0;
  color: #5f6675;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .portfolio-carousel-stage {
    height: 360px;
  }

  .portfolio-slide {
    width: 62vw;
    height: 320px;
  }

  .portfolio-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .portfolio-benefit {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-dark {
    padding: 80px 16px;
  }

  .portfolio-dark-header {
    margin-bottom: 42px;
  }

  .portfolio-dark-header h2 {
    font-size: 58px;
    letter-spacing: -1.5px;
  }

  .portfolio-dark-header p {
    font-size: 15px;
  }

  .portfolio-carousel-stage {
    height: 270px;
    overflow: hidden;
  }

  .portfolio-slide {
    width: 88vw;
    height: 235px;
  }

  .portfolio-slide.is-left,
  .portfolio-slide.is-right {
    opacity: 0;
    pointer-events: none;
  }

  .portfolio-arrow {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .portfolio-prev {
    left: -4px;
  }

  .portfolio-next {
    right: -4px;
  }

  .portfolio-benefits {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .portfolio-benefit {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .portfolio-benefit:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Portfolio carousel arrow alignment polish */
.portfolio-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 44px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
  z-index: 50 !important;
}

.portfolio-prev {
  left: 32px !important;
  text-indent: -2px;
}

.portfolio-next {
  right: 32px !important;
  text-indent: 2px;
}

.portfolio-prev,
.portfolio-next {
  overflow: hidden !important;
}

.portfolio-arrow span,
.portfolio-arrow svg,
.portfolio-arrow i {
  display: block !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.portfolio-arrow svg {
  width: 30px !important;
  height: 30px !important;
  flex-shrink: 0 !important;
}

.portfolio-arrow:hover {
  transform: translateY(-50%) scale(1.06) !important;
}

@media (max-width: 768px) {
  .portfolio-arrow {
    width: 46px !important;
    height: 46px !important;
    font-size: 36px !important;
  }

  .portfolio-prev {
    left: 10px !important;
  }

  .portfolio-next {
    right: 10px !important;
  }
}

/* Portfolio dark theme restore */
.portfolio-showcase-dark {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 106, 0, 0.22), transparent 36%),
    radial-gradient(circle at 20% 25%, rgba(255, 154, 61, 0.08), transparent 28%),
    #171717 !important;
  color: #ffffff !important;
}

.portfolio-showcase-dark::before {
  background-image: radial-gradient(rgba(255, 122, 0, 0.18) 1px, transparent 1px) !important;
  background-size: 18px 18px !important;
  opacity: 0.08 !important;
}

.portfolio-bg-glow {
  background: radial-gradient(circle, rgba(255, 106, 0, 0.45), transparent 65%) !important;
  opacity: 0.75 !important;
}

.portfolio-dark-label {
  color: #ff9a3d !important;
  border-color: rgba(255, 122, 0, 0.42) !important;
  background: rgba(255, 122, 0, 0.06) !important;
}

.portfolio-dark-header h2 span {
  color: #ffffff !important;
}

.portfolio-dark-header h2 strong {
  background: linear-gradient(135deg, #ff6a00, #ffb000) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.portfolio-dark-header p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.portfolio-slide {
  background: #222222 !important;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.portfolio-slide.is-left,
.portfolio-slide.is-right {
  filter: brightness(0.68) !important;
  opacity: 0.76 !important;
}

.portfolio-arrow {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 122, 0, 0.5) !important;
  box-shadow: none !important;
}

.portfolio-arrow:hover {
  background: rgba(255, 106, 0, 0.8) !important;
  color: #ffffff !important;
  box-shadow: 0 0 35px rgba(255, 106, 0, 0.38) !important;
}

.portfolio-benefits {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
}

.portfolio-benefit {
  border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
}

.portfolio-benefit h4 {
  color: #ffffff !important;
}

.portfolio-benefit p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.benefit-icon {
  background: rgba(255, 122, 0, 0.08) !important;
  color: #ff7a00 !important;
  border: 1px solid rgba(255, 122, 0, 0.45) !important;
  box-shadow: inset 0 0 20px rgba(255, 122, 0, 0.08) !important;
}

.carousel-dot,
.portfolio-dot {
  background: #ffc08b !important;
  opacity: 0.78 !important;
}

.carousel-dot.active,
.portfolio-dot.active {
  background: #ff6a00 !important;
  opacity: 1 !important;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.6) !important;
}

/* Portfolio light premium theme */
.portfolio-showcase-dark {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 122, 0, 0.14), transparent 36%),
    radial-gradient(circle at 8% 18%, rgba(255, 176, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%) !important;
  color: #07111f !important;
}

.portfolio-showcase-dark::before {
  background-image: radial-gradient(rgba(255, 122, 0, 0.22) 1px, transparent 1px) !important;
  opacity: 0.12 !important;
}

.portfolio-bg-glow {
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 65%) !important;
  opacity: 0.8 !important;
}

.portfolio-dark-label {
  color: #ff6a00 !important;
  border-color: rgba(255, 122, 0, 0.35) !important;
  background: rgba(255, 122, 0, 0.06) !important;
}

.portfolio-dark-header h2 span {
  color: #07111f !important;
}

.portfolio-dark-header p {
  color: #5f6675 !important;
}

.portfolio-slide {
  background: #ffffff !important;
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(255, 122, 0, 0.10) !important;
}

.portfolio-slide.is-left,
.portfolio-slide.is-right {
  filter: brightness(0.88) !important;
  opacity: 0.82 !important;
}

.portfolio-arrow {
  background: rgba(255, 255, 255, 0.8) !important;
  color: #07111f !important;
  border: 1px solid rgba(255, 122, 0, 0.35) !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
}

.portfolio-arrow:hover {
  background: linear-gradient(135deg, #ff6a00, #ffb000) !important;
  color: #ffffff !important;
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.28) !important;
}

.portfolio-benefits {
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(255, 122, 0, 0.14) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10) !important;
}

.portfolio-benefit {
  border-right: 1px solid rgba(15, 23, 42, 0.12) !important;
}

.portfolio-benefit h4 {
  color: #07111f !important;
}

.portfolio-benefit p {
  color: #5f6675 !important;
}

.benefit-icon {
  background: #fff1e3 !important;
  color: #ff6a00 !important;
  border: 1px solid rgba(255, 122, 0, 0.28) !important;
}

/* Real-work Showcase carousel and modal */
body.portfolio-modal-open {
  overflow: hidden;
}

.portfolio-showcase-dark {
  padding: 108px 18px 88px !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 106, 0, 0.24), transparent 32%),
    radial-gradient(circle at 20% 20%, rgba(255, 176, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #080808 0%, #151515 54%, #080808 100%) !important;
  color: #ffffff !important;
}

.portfolio-showcase-dark::before {
  background-image: radial-gradient(rgba(255, 122, 0, 0.2) 1px, transparent 1px) !important;
  opacity: 0.08 !important;
}

.portfolio-bg-glow {
  top: 48% !important;
  width: min(680px, 70vw) !important;
  height: 300px !important;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.5), rgba(255, 176, 0, 0.13) 44%, transparent 68%) !important;
  filter: blur(54px) !important;
  opacity: 0.9 !important;
}

.portfolio-dark-header {
  margin-bottom: 48px !important;
}

.portfolio-dark-label {
  color: #ff9a3d !important;
  background: rgba(255, 122, 0, 0.08) !important;
}

.portfolio-dark-header h2 {
  letter-spacing: 0 !important;
}

.portfolio-dark-header h2 span {
  color: #ffffff !important;
}

.portfolio-dark-header p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.portfolio-carousel-wrap {
  width: min(1500px, 100%) !important;
}

.portfolio-carousel-stage {
  height: clamp(300px, 34vw, 530px) !important;
  perspective: 1600px !important;
  overflow: visible !important;
}

.portfolio-carousel-stage.is-loading::before {
  content: "Loading portfolio work...";
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.portfolio-slide {
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  width: min(850px, 58vw) !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #101010 !important;
  cursor: pointer !important;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 46px rgba(255, 106, 0, 0.16) !important;
  transform-style: preserve-3d !important;
  transition:
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.68s ease,
    filter 0.68s ease,
    box-shadow 0.28s ease !important;
}

.portfolio-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.portfolio-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.portfolio-slide.is-active img {
  filter: none !important;
  opacity: 1 !important;
}

.portfolio-slide.is-left::after,
.portfolio-slide.is-right::after {
  background: rgba(0, 0, 0, 0.25);
}

.portfolio-slide img.image-load-error,
.portfolio-modal-image.image-load-error,
.portfolio-thumb img.image-load-error {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(0, 0, 0, 0.12)),
    #101010 !important;
}

.portfolio-slide.is-active {
  opacity: 1 !important;
  z-index: 6 !important;
  filter: brightness(1) saturate(1.04) !important;
  transform: translateX(-50%) translateZ(0) rotateY(0deg) scale(1) !important;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.74),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 70px rgba(255, 106, 0, 0.32) !important;
}

.portfolio-slide.is-active:hover {
  transform: translateX(-50%) translateY(-7px) translateZ(0) rotateY(0deg) scale(1.01) !important;
}

.portfolio-slide.is-left {
  opacity: 0.72 !important;
  z-index: 4 !important;
  filter: brightness(0.58) saturate(0.9) !important;
  transform: translateX(-113%) rotateY(24deg) scale(0.82) !important;
}

.portfolio-slide.is-right {
  opacity: 0.72 !important;
  z-index: 4 !important;
  filter: brightness(0.58) saturate(0.9) !important;
  transform: translateX(13%) rotateY(-24deg) scale(0.82) !important;
}

.portfolio-slide.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  transform: translateX(-50%) scale(0.68) !important;
}

.portfolio-active-meta {
  position: relative;
  z-index: 5;
  width: min(760px, 92vw);
  margin: 22px auto 0;
  text-align: center;
}

.portfolio-active-category,
.portfolio-modal-category {
  margin: 0 0 8px;
  color: #ff9a3d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.portfolio-active-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.18rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.portfolio-view-btn {
  min-height: 42px;
  margin-top: 16px;
  padding: 0 20px;
  border: 1px solid rgba(255, 122, 0, 0.48);
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-view-btn:hover {
  background: rgba(255, 106, 0, 0.92);
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.28);
  transform: translateY(-2px);
}

.portfolio-arrow {
  background: rgba(10, 10, 10, 0.72) !important;
  color: #ffffff !important;
  border-color: rgba(255, 122, 0, 0.55) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35) !important;
}

.portfolio-prev {
  left: clamp(10px, 3vw, 38px) !important;
}

.portfolio-next {
  right: clamp(10px, 3vw, 38px) !important;
}

.portfolio-dots {
  margin-top: 10px !important;
}

.portfolio-benefits {
  margin-top: 64px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.portfolio-benefit,
.portfolio-benefit:last-child {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.portfolio-benefit h4 {
  color: #ffffff !important;
}

.portfolio-benefit p {
  color: rgba(255, 255, 255, 0.66) !important;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.portfolio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.portfolio-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  max-height: min(92vh, 920px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 106, 0, 0.16), transparent 30%),
    #101010;
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.78);
  transform: scale(0.97);
  transition: transform 0.24s ease;
}

.portfolio-modal.is-open .portfolio-modal-panel {
  transform: scale(1);
}

.portfolio-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.portfolio-modal-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  padding-right: 54px;
}

.portfolio-modal-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.portfolio-slide-counter {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.portfolio-modal-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.portfolio-modal-image {
  width: 100%;
  max-height: min(64vh, 680px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.62);
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.portfolio-modal-image.is-switching {
  opacity: 0;
  transform: scale(0.995);
}

.portfolio-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 0, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.56);
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.portfolio-modal-nav:hover {
  background: rgba(255, 106, 0, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.portfolio-modal-prev {
  left: 16px;
}

.portfolio-modal-next {
  right: 16px;
}

.portfolio-modal-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-color: #ff6a00 rgba(255, 255, 255, 0.08);
}

.portfolio-thumb {
  flex: 0 0 108px;
  width: 108px;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.portfolio-thumb.active {
  border-color: #ff6a00;
  opacity: 1;
  transform: translateY(-2px);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .portfolio-carousel-stage {
    height: clamp(270px, 42vw, 430px) !important;
  }

  .portfolio-slide {
    width: 72vw !important;
  }

  .portfolio-slide.is-left {
    transform: translateX(-103%) rotateY(21deg) scale(0.8) !important;
  }

  .portfolio-slide.is-right {
    transform: translateX(3%) rotateY(-21deg) scale(0.8) !important;
  }

  .portfolio-benefits {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-dark {
    padding: 82px 14px 74px !important;
  }

  .portfolio-dark-header {
    margin-bottom: 34px !important;
  }

  .portfolio-dark-header h2 {
    font-size: clamp(3.25rem, 17vw, 4.8rem) !important;
  }

  .portfolio-carousel-stage {
    height: calc(92vw * 0.5625 + 10px) !important;
    overflow: hidden !important;
  }

  .portfolio-slide {
    width: 92vw !important;
  }

  .portfolio-slide.is-left,
  .portfolio-slide.is-right {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) scale(0.88) !important;
  }

  .portfolio-arrow {
    width: 46px !important;
    height: 46px !important;
  }

  .portfolio-active-title {
    font-size: 1.12rem;
  }

  .portfolio-benefits {
    grid-template-columns: 1fr !important;
    margin-top: 46px !important;
    padding: 24px !important;
  }

  .portfolio-benefit {
    padding: 0 0 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .portfolio-benefit:last-child {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .portfolio-modal {
    padding: 12px;
  }

  .portfolio-modal-panel {
    max-height: 94vh;
    gap: 12px;
    padding: 16px;
  }

  .portfolio-modal-header {
    display: block;
    padding-right: 48px;
  }

  .portfolio-slide-counter {
    display: inline-block;
    margin-top: 8px;
  }

  .portfolio-modal-image {
    max-height: 58vh;
  }

  .portfolio-modal-nav {
    width: 42px;
    height: 42px;
  }

  .portfolio-modal-prev {
    left: 8px;
  }

  .portfolio-modal-next {
    right: 8px;
  }

  .portfolio-thumb {
    flex-basis: 92px;
    width: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-slide,
  .portfolio-modal,
  .portfolio-modal-panel,
  .portfolio-modal-image,
  .portfolio-thumb,
  .portfolio-view-btn {
    transition: none !important;
  }
}

/* Premium How We Work process section */
#process.process-section {
  position: relative;
  padding: 110px 24px 95px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 176, 0, 0.18), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 122, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  overflow: hidden;
}

#process.process-section::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 70px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.22) 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.45;
}

#process.process-section::after {
  content: "";
  position: absolute;
  right: 70px;
  top: 80px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.20) 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.45;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 68px;
}

.process-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 999px;
  color: #ff6a00;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.65);
}

.process-title {
  margin: 24px 0 18px;
  font-size: clamp(62px, 7vw, 112px);
  line-height: 0.95;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -3px;
  color: #121212;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

.process-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  color: #6b7280;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  gap: 0;
}

.process-card {
  position: relative;
  min-height: 355px;
  height: 100%;
  padding: 34px 34px 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 122, 0, 0.18);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 36px 90px rgba(255, 122, 0, 0.15);
}

.process-number {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffb000, #ff5c00);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.28);
}

.process-icon {
  width: 118px;
  height: 118px;
  margin: 55px auto 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3e8;
  color: #ff6a00;
}

.process-icon svg {
  width: 58px;
  height: 58px;
  stroke: currentColor;
}

.process-card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 750;
  color: #111827;
}

.process-card-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  margin: 18px auto 18px;
}

.process-card-text {
  margin: 0 auto;
  max-width: 270px;
  color: #5f6675;
  font-size: 16px;
  line-height: 1.6;
}

.process-connector {
  position: relative;
  align-self: center;
  height: 2px;
  background: rgba(255, 122, 0, 0.36);
}

.process-connector span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: #ff6a00;
  font-size: 26px;
  box-shadow: 0 14px 36px rgba(255, 122, 0, 0.14);
  animation: processArrowPulse 2.8s ease-in-out infinite;
}

.process-benefits {
  margin: 58px auto 0;
  max-width: 1180px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 0, 0.18);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.process-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(17, 24, 39, 0.12);
}

.process-benefit:last-child {
  border-right: none;
}

.process-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3e8;
  color: #ff6a00;
  font-size: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 122, 0, 0.18);
}

.process-benefit h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #111827;
}

.process-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

.js-ready .process-section .process-card.reveal,
.js-ready .process-section .process-header.reveal,
.js-ready .process-section .process-benefits.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .process-section .process-card.reveal.visible,
.js-ready .process-section .process-header.reveal.visible,
.js-ready .process-section .process-benefits.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-card:nth-child(1) {
  transition-delay: 0.05s;
}

.process-card:nth-child(3) {
  transition-delay: 0.12s;
}

.process-card:nth-child(5) {
  transition-delay: 0.19s;
}

.process-card:nth-child(7) {
  transition-delay: 0.26s;
}

@keyframes processArrowPulse {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(255, 122, 0, 0.14);
  }

  50% {
    box-shadow: 0 14px 42px rgba(255, 122, 0, 0.32);
  }
}

@media (max-width: 1180px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .process-connector {
    display: none;
  }

  .process-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-benefit {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 768px) {
  #process.process-section {
    padding: 82px 16px;
  }

  .process-title {
    font-size: 58px;
    letter-spacing: -1.5px;
  }

  .process-subtitle {
    font-size: 17px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    padding: 30px 24px 34px;
  }

  .process-icon {
    margin-top: 62px;
  }

  .process-benefits {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .process-benefit {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  }

  .process-benefit:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Premium Global Clients section */
#global-clients.global-clients-section {
  position: relative;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 176, 0, 0.13), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(255, 106, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
  overflow: hidden;
}

.global-clients-card {
  position: relative;
  max-width: 1420px;
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 56px 58px;
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 176, 0, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 0, 0.13);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.global-clients-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 155px;
  width: 130%;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.global-clients-card::after {
  content: "";
  position: absolute;
  right: 52px;
  bottom: 46px;
  width: 126px;
  height: 126px;
  background-image: radial-gradient(rgba(255, 122, 0, 0.22) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.38;
  pointer-events: none;
}

.global-clients-header {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.global-clients-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(255, 106, 0, 0.25);
}

.global-clients-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 7px 0 0 rgba(255, 255, 255, 0.18);
}

.global-clients-header h2 {
  margin: 30px auto 16px;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -2px;
  color: #161616;
}

.global-clients-header h2 span {
  display: block;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.global-clients-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
  color: #6b7280;
}

.global-map-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  min-height: 420px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.global-map-wrap:hover {
  transform: translateY(-10px) scale(1.015);
  filter: drop-shadow(0 28px 40px rgba(255, 122, 0, 0.16));
}

.global-map {
  width: 100%;
  max-width: 1120px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.96;
  transition: transform 0.45s ease;
}

.global-map-wrap:hover .global-map {
  transform: scale(1.01);
}

.map-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.25s ease;
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
  box-shadow:
    0 0 0 7px rgba(255, 122, 0, 0.12),
    0 0 26px rgba(255, 122, 0, 0.45);
  transform: translate(-50%, -50%);
  animation: mapPinPulse 2.6s ease-in-out infinite;
}

.map-pin:hover,
.map-pin:focus-visible {
  outline: none;
  transform: translateY(-4px) scale(1.25);
}

.pin-north-america {
  left: 26%;
  top: 24%;
}

.pin-europe {
  left: 51%;
  top: 25%;
}

.pin-uae {
  left: 59%;
  top: 38%;
}

.pin-india {
  left: 66%;
  top: 44%;
}

.pin-southeast-asia {
  left: 76%;
  top: 52%;
}

.pin-south-africa {
  left: 55%;
  top: 64%;
}

.map-tooltip {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  white-space: nowrap;
}

.map-tooltip.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.global-region-list {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.global-region-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7a5a13;
  font-size: 15px;
  font-weight: 700;
}

.global-region-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
}

.js-ready .global-clients-card.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-ready .global-clients-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.map-pin:nth-of-type(1)::before {
  animation-delay: 0.1s;
}

.map-pin:nth-of-type(2)::before {
  animation-delay: 0.25s;
}

.map-pin:nth-of-type(3)::before {
  animation-delay: 0.4s;
}

.map-pin:nth-of-type(4)::before {
  animation-delay: 0.55s;
}

.map-pin:nth-of-type(5)::before {
  animation-delay: 0.7s;
}

.map-pin:nth-of-type(6)::before {
  animation-delay: 0.85s;
}

@keyframes mapPinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 7px rgba(255, 122, 0, 0.12),
      0 0 26px rgba(255, 122, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 13px rgba(255, 122, 0, 0.04),
      0 0 36px rgba(255, 122, 0, 0.55);
  }
}

@media (max-width: 1024px) {
  .global-clients-card {
    min-height: auto;
    padding: 60px 28px 48px;
  }

  .global-clients-card::before {
    top: 180px;
    height: 430px;
  }

  .global-map-wrap {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  #global-clients.global-clients-section {
    padding: 80px 16px;
  }

  .global-clients-card {
    padding: 44px 18px 38px;
    border-radius: 30px;
  }

  .global-clients-card::before {
    top: 150px;
    height: 300px;
  }

  .global-clients-label {
    padding: 11px 20px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .global-clients-header h2 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .global-clients-header p {
    font-size: 16px;
  }

  .global-map-wrap {
    min-height: 260px;
    margin-top: 18px;
  }

  .global-map-wrap:hover {
    transform: none;
  }

  .map-pin {
    width: 30px;
    height: 30px;
  }

  .map-pin::before {
    width: 13px;
    height: 13px;
  }

  .global-region-list {
    gap: 10px 16px;
  }

  .global-region-list span {
    font-size: 13px;
  }
}

/* Real presentation work inside the existing interactive Services section */
.services-showcase-section {
  overflow: clip;
}

.featured-service-panel {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.35s ease;
}

.featured-service-panel.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.featured-button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.featured-service-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 430px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.featured-service-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}

.featured-main-slide {
  position: relative;
  top: -24px;
  z-index: 4;
  width: min(560px, 100%);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 5px;
  background: transparent;
  box-shadow: 0 32px 60px rgba(17, 18, 34, 0.26);
  transform: rotate(-5deg);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.featured-main-slide:hover,
.featured-main-slide:focus-visible {
  transform: translateY(-10px) rotate(-2deg) scale(1.025);
  box-shadow: 0 38px 70px rgba(17, 18, 34, 0.32);
}

.featured-main-slide:focus-visible,
.featured-support-slide:focus-visible,
.service-project-thumb:focus-visible {
  outline: 3px solid #ff7a00;
  outline-offset: 4px;
}

.featured-main-slide .featured-visual-img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  filter: none;
  transform: none;
  transition: opacity 0.28s ease;
  animation: none;
}

.featured-supporting-slides {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.featured-support-slide {
  position: absolute;
  width: min(190px, 34%);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(17, 18, 34, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.featured-support-slide:hover {
  z-index: 8;
  box-shadow: 0 26px 50px rgba(17, 18, 34, 0.3);
}

.supporting-slide-one {
  left: -2px;
  bottom: 70px;
  transform: rotate(-7deg);
}

.supporting-slide-one:hover {
  transform: translateY(-7px) rotate(-3deg);
}

.supporting-slide-two {
  right: -2px;
  bottom: 78px;
  transform: rotate(7deg);
}

.supporting-slide-two:hover {
  transform: translateY(-7px) rotate(3deg);
}

.featured-project-meta {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 9;
  width: min(390px, 78%);
  padding: 10px 16px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(17, 18, 34, 0.13);
  text-align: center;
  transform: translateX(-50%);
}

.featured-project-meta span {
  display: block;
  margin-bottom: 2px;
  color: #ff6a00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.featured-project-meta strong {
  display: block;
  overflow: hidden;
  color: #07111f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-project-switcher {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.service-project-switcher[hidden] {
  display: none;
}

.service-project-thumb {
  width: 66px;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 18, 34, 0.18);
  opacity: 0.72;
  cursor: pointer;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-project-thumb,
.service-modal-thumb {
  position: relative;
}

.featured-support-slide,
.service-project-thumb,
.service-modal-thumb {
  background: transparent;
}

.featured-main-slide::before,
.featured-main-slide::after,
.featured-support-slide::before,
.featured-support-slide::after {
  pointer-events: none;
}

.service-image-error {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  place-items: center;
  padding: 8px;
  background: rgba(7, 17, 31, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.has-image-error > .service-image-error {
  display: grid;
}

.has-image-error > img,
.featured-service-visual img.image-load-error,
.service-project-modal img.image-load-error {
  opacity: 0 !important;
  visibility: hidden !important;
}

.service-project-thumb:hover,
.service-project-thumb.active {
  border-color: #ff6a00;
  opacity: 1;
  transform: translateY(-3px);
}

.featured-visual-labels {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.service-visual-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 122, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(17, 18, 34, 0.14);
  color: #07111f;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.service-visual-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
}

.visual-chip-1,
.visual-chip-one {
  top: 48px;
  right: 0;
}

.visual-chip-2,
.visual-chip-two {
  top: 124px;
  left: -8px;
}

.visual-chip-3,
.visual-chip-three {
  top: 8px;
  right: 24%;
}

body.service-modal-open {
  overflow: hidden;
}

.service-project-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 4, 7, 0.92);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}

.service-modal-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0a0b0e;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
  transform: scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-project-modal.is-open .service-modal-content {
  transform: scale(1);
}

.service-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-modal-category {
  margin: 0 0 5px;
  color: #ff7a00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.service-modal-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.15;
}

.service-modal-close,
.service-modal-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(12, 13, 17, 0.84);
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-modal-close {
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.service-modal-close:hover,
.service-modal-arrow:hover {
  border-color: #ff7a00;
  background: #ff6a00;
  transform: scale(1.05);
}

.service-modal-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: #050506;
}

.service-modal-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 66vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: transparent;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.service-modal-image.is-changing {
  opacity: 0;
}

.service-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  font-size: 38px;
  transform: translateY(-50%);
}

.service-modal-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.service-modal-prev {
  left: 14px;
}

.service-modal-next {
  right: 14px;
}

.service-modal-counter {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.service-modal-thumbs {
  display: flex;
  gap: 10px;
  padding: 2px 1px 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #ff6a00 #18191e;
}

.service-modal-thumb {
  flex: 0 0 112px;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #111217;
  opacity: 0.56;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.service-modal-thumb:hover,
.service-modal-thumb.active {
  border-color: #ff6a00;
  opacity: 1;
  transform: translateY(-2px);
}

.service-modal-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050506;
}

@media (max-width: 1180px) {
  .services-tabs {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .service-tab {
    flex: 0 0 min(330px, 72vw);
    border-right: 1px solid rgba(17, 18, 34, 0.08);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .service-tab:nth-child(2n) {
    border-right: 1px solid rgba(17, 18, 34, 0.08);
  }

  .featured-service-panel {
    grid-template-columns: minmax(280px, 0.85fr) minmax(380px, 1.15fr);
  }
}

@media (max-width: 820px) {
  .service-tab {
    flex-basis: min(290px, 82vw);
  }

  .service-tab-copy small {
    display: none;
  }

  .featured-service-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured-button {
    width: 100%;
  }

  .featured-service-visual {
    min-height: 350px;
  }

  .featured-main-slide {
    top: -16px;
    width: min(560px, 92%);
    transform: rotate(-3deg);
  }

  .featured-main-slide:hover,
  .featured-main-slide:focus-visible {
    transform: translateY(-6px) rotate(-1deg) scale(1.015);
  }

  .featured-support-slide {
    width: min(180px, 40%);
  }

  .supporting-slide-one {
    left: 2px;
    bottom: 68px;
  }

  .supporting-slide-two {
    right: 2px;
    bottom: 72px;
  }

  .featured-visual-labels {
    display: none;
  }

  .featured-project-meta {
    width: min(420px, 86%);
  }

  .service-project-modal {
    padding: 10px;
  }

  .service-modal-content {
    max-height: calc(100vh - 20px);
    padding: 16px;
  }

  .service-modal-stage {
    width: 100%;
  }

  .service-modal-image {
    max-height: 62vh;
  }

  .service-modal-arrow {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  .featured-service-panel {
    padding: 26px 18px 30px;
  }

  .featured-title {
    font-size: 34px;
    letter-spacing: 0;
  }

  .featured-chips {
    gap: 8px;
    margin-bottom: 26px;
  }

  .featured-chip {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .featured-service-visual {
    min-height: 292px;
  }

  .featured-main-slide {
    top: -24px;
    width: 100%;
  }

  .supporting-slide-one {
    width: 44%;
    left: 4px;
    bottom: 62px;
  }

  .supporting-slide-two {
    display: none;
  }

  .featured-project-meta {
    bottom: 7px;
    width: 92%;
  }

  .service-project-switcher {
    top: 2px;
    left: 2px;
  }

  .service-project-thumb {
    width: 54px;
  }

  .service-modal-content {
    gap: 10px;
    padding: 12px;
  }

  .service-modal-title {
    max-width: 78vw;
    font-size: 19px;
  }

  .service-modal-close {
    width: 40px;
    height: 40px;
  }

  .service-modal-arrow {
    width: 38px;
    height: 38px;
    background: rgba(12, 13, 17, 0.76);
  }

  .service-modal-prev {
    left: 6px;
  }

  .service-modal-next {
    right: 6px;
  }

  .service-modal-thumb {
    flex-basis: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-service-panel,
  .featured-main-slide,
  .featured-support-slide,
  .service-project-thumb,
  .service-project-modal,
  .service-modal-content,
  .service-modal-image,
  .service-modal-thumb {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation: none !important;
  }
}

/* Final mobile-only layout correction */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main section {
    scroll-margin-top: 90px;
  }

  .section-header {
    margin-bottom: 36px !important;
  }

  img,
  video,
  canvas {
    max-width: 100%;
    height: auto;
  }

  .site-header {
    height: 92px !important;
  }

  .navbar {
    width: 100% !important;
    height: 92px !important;
    min-height: 92px !important;
    margin: 0 !important;
    padding: 16px 20px !important;
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
  }

  .brand img {
    width: 78px !important;
    height: auto !important;
    max-height: 60px !important;
  }

  .nav-toggle,
  .menu-toggle,
  .hamburger-button {
    width: 58px !important;
    height: 58px !important;
    border-radius: 17px !important;
  }

  .nav-panel {
    top: 92px !important;
    left: 16px !important;
    right: 16px !important;
  }

  .hero-shell {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
    border-bottom-left-radius: 36px !important;
    border-bottom-right-radius: 36px !important;
  }

  .hero-section,
  .hero,
  #home,
  #home.hero {
    min-height: auto !important;
    height: auto !important;
    padding: 125px 20px 58px !important;
    overflow: hidden !important;
  }

  .hero-container,
  .hero-content,
  .hero-inner,
  #home .hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .hero-visual,
  #home .hero-visual,
  .animated-card-stack,
  #home .animated-card-stack,
  .hero-card-stack,
  .hero-cards,
  .card-layer,
  #home .card-layer,
  .hero-floating-pill,
  #home .hero-floating-pill,
  .hero-chip,
  #home .floating-chip,
  .floating-chip {
    display: none !important;
  }

  .hero-title,
  .hero h1,
  #home h1,
  #home .hero-title {
    max-width: 360px !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    font-size: clamp(46px, 13vw, 58px) !important;
    line-height: 0.96 !important;
    letter-spacing: -2.4px !important;
    font-weight: 900 !important;
    font-style: normal !important;
    text-align: center !important;
  }

  .hero-title span,
  #home .hero-title span {
    position: static !important;
    display: inline !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    transform: none !important;
    translate: none !important;
  }

  .hero-title br,
  .hero h1 br {
    line-height: inherit !important;
  }

  .hero-text,
  .hero-subtext,
  #home .hero-subtext {
    max-width: 350px !important;
    margin: 0 auto 32px !important;
    padding: 0 !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    letter-spacing: 0 !important;
    color: #666666 !important;
  }

  .hero-text br,
  .hero-subtext br {
    display: none !important;
  }

  .hero-actions,
  #home .hero-actions,
  .hero-buttons {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 !important;
  }

  .hero-actions a,
  .hero-actions button,
  #home .hero-actions .btn,
  .hero-buttons a,
  .hero-buttons button {
    width: 100% !important;
    min-height: 58px !important;
    padding: 16px 22px !important;
    border-radius: 18px !important;
    font-size: 17px !important;
    box-shadow: 0 12px 26px rgba(17, 18, 34, 0.08) !important;
  }

  .services-showcase-section,
  .services-modern {
    padding: 72px 16px !important;
  }

  .services-showcase-header {
    margin-bottom: 28px !important;
  }

  .services-main-title {
    font-size: clamp(36px, 10vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.4px !important;
  }

  .services-main-subtitle {
    margin-top: 16px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .services-showcase-box,
  .services-showcase {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    padding: 10px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .services-tabs,
  .service-tabs {
    width: 100% !important;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    margin: 0 0 14px !important;
    padding: 4px 2px 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-tabs::-webkit-scrollbar,
  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 200px !important;
    min-height: 70px !important;
    grid-template-columns: 28px 42px minmax(0, 1fr) 18px !important;
    gap: 8px !important;
    padding: 12px 13px !important;
    border: 1px solid rgba(17, 18, 34, 0.08) !important;
    border-radius: 18px !important;
    scroll-snap-align: start;
  }

  .service-tab::before {
    width: 3px !important;
    border-radius: 18px 0 0 18px;
  }

  .service-tab-copy small,
  .service-tab .service-tab-description {
    display: none !important;
  }

  .service-tab-number {
    font-size: 14px !important;
  }

  .service-tab-icon {
    width: 42px !important;
    height: 42px !important;
  }

  .service-tab-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .service-tab-copy strong,
  .service-tab h3,
  .service-tab-title {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .service-tab-arrow {
    font-size: 24px !important;
  }

  .featured-service-panel,
  .service-preview {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    grid-template-columns: 1fr !important;
    padding: 32px 22px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .featured-content,
  .service-preview-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .featured-service-visual,
  .featured-visual,
  .featured-main-slide,
  .featured-supporting-slides,
  .featured-support-slide,
  .service-preview-image,
  .market-card,
  .float-chip,
  .service-floating-chip,
  .featured-visual-decoration,
  .featured-project-meta,
  .service-project-switcher,
  .featured-visual-labels {
    display: none !important;
  }

  .featured-badge {
    margin-bottom: 18px !important;
  }

  .featured-title,
  .service-preview h3,
  .featured-service-panel h3 {
    margin: 0 0 22px !important;
    font-size: clamp(38px, 11vw, 48px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.8px !important;
  }

  .featured-description,
  .service-preview-description {
    margin: 0 0 26px !important;
    font-size: 17px !important;
    line-height: 1.65 !important;
  }

  .featured-chips,
  .service-chips {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
  }

  .featured-chip,
  .service-chip {
    width: auto !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }

  .featured-button,
  .explore-service-button {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 16px 22px !important;
    border-radius: 18px !important;
    font-size: 17px !important;
  }

  #about .clients-pill {
    width: calc(100% - 24px) !important;
    min-width: 0 !important;
    max-width: calc(100% - 24px) !important;
    padding-inline: 12px !important;
  }
}
