/* Home — Dark-Edged Landing */

.page-home .page-content {
  display: flow-root;
}

.page-home .hero-carousel-wrapper {
  float: left;
  width: 100%;
  clear: both;
  background: #0b0c0e;
}

.page-home .hero-carousel {
  position: relative;
  min-height: 580px;
  height: 100vh;
  max-height: 780px;
  overflow: hidden;
  color: #f0f0f0;
  font-family: var(--th-font-family);
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.page-home .hero-slide[data-layout='align-left'] .hero-slide__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.page-home .hero-slide[data-layout='align-right'] .hero-slide__overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.page-home .hero-slide__content {
  position: absolute;
  z-index: 4;
  max-width: 520px;
}

.page-home .hero-slide__content--align-right {
  right: 8%;
  left: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
}

.page-home .hero-slide__content--align-left {
  left: 8%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  text-align: left;
}

.page-home .hero-slide__content--align-center {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 640px;
}

.page-home .hero-slide__content--align-bottom {
  left: 8%;
  right: auto;
  bottom: 14%;
  top: auto;
  transform: none;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00c896;
  background: rgba(0, 200, 150, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 150, 0.25);
}

.hero-slide__title {
  font-family: var(--th-font-family);
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-slide__tag {
  opacity: 0;
  transform: translateY(8px);
}

.hero-slide.is-active .hero-slide__tag {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__tag span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-slide__tag span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c896;
  margin-right: 10px;
}

.hero-slide__tag span:hover {
  background: rgba(0, 200, 150, 0.1);
  border-color: #00c896;
}

.hero-slide__ctas {
  display: inline-flex;
  gap: 12px;
  margin-top: 8px;
}

.hero-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--th-font-family);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hero-slide__btn--primary {
  background: #00c896;
  color: #0b0c0e !important;
}

.hero-slide__btn--ghost {
  background: transparent;
  color: #f0f0f0 !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-slide__btn:hover {
  transform: translateY(-1px);
}

.hero-slide__btn--primary:hover {
  background: #00e5b0;
}

.hero-slide__btn--ghost:hover {
  border-color: #00c896;
  color: #00c896 !important;
}

.hero-carousel__dots {
  position: absolute;
  left: 8%;
  bottom: 24px;
  display: inline-flex;
  gap: 6px;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.hero-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #00c896;
}

@media (max-width: 767px) {
  .hero-carousel {
    min-height: 520px;
    height: 90vh;
  }

  .page-home .hero-slide__content--align-right,
  .page-home .hero-slide__content--align-left,
  .page-home .hero-slide__content--align-center {
    left: 6% !important;
    right: 6% !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    max-width: none;
    max-height: 68%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-home .hero-slide__content--align-center {
    transform: translateY(-50%) !important;
    text-align: left;
  }

  .page-home .hero-slide__content--align-bottom {
    left: 6% !important;
    right: 6% !important;
    top: auto !important;
    bottom: 52px !important;
    transform: none !important;
    max-height: 62%;
  }
  .hero-slide__title {
    font-size: 2.25rem;
  }
  .hero-slide__ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-slide__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Sections */
.home-section {
  padding: 80px 24px;
}

.home-section--dark {
  background: #0b0c0e;
}

.home-section--surface {
  background: #13151a;
}

.home-container {
  width: min(1200px, calc(100% - 48px));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Section 2: Dig Into Our Service */
.page-home .home-service {
  clear: both;
  position: relative;
  z-index: 3;
  padding: clamp(72px, 10vh, 96px) 24px 64px;
  background: #0b0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-service__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid #00c896;
}

.home-service__title {
  font-family: var(--th-font-family);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 8px;
}

.home-service__subtitle {
  font-family: var(--th-font-family);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--th-text-muted, rgba(255, 255, 255, 0.75));
}

.home-service__bar {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: #00c896;
  margin-bottom: 20px;
}

.home-service__text {
  font-size: 15px;
  line-height: 1.85;
  color: #8a8f9e;
  margin: 0 0 16px;
}

.home-service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #00c896 !important;
  text-decoration: none !important;
}

.home-service__link .ti {
  transition: transform 0.2s ease;
}

.home-service__link:hover .ti {
  transform: translateX(4px);
}

.home-terminal {
  background: #13151a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.home-terminal__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--th-font-mono);
  font-size: 12px;
  color: #8a8f9e;
}

.home-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.home-terminal__dot--red {
  background: #ff5f56;
}

.home-terminal__dot--amber {
  background: #ffbd2e;
}

.home-terminal__dot--green {
  background: #27c93f;
}

.home-terminal__body--orbit {
  position: relative;
  min-height: 320px;
  max-height: 420px;
  padding: 16px 12px 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(0, 200, 150, 0.08), transparent 65%),
    #0d0f14;
}

/* Floating tech icons — grid layout until physics JS activates */
.tech-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 10px 6px;
  width: 100%;
  max-width: 100%;
  max-height: 388px;
  margin: 0 auto;
  padding: 4px 6px 8px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 200, 150, 0.35) rgba(255, 255, 255, 0.06);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.tech-orbit--physics {
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 388px;
}

.tech-orbit--physics .tech-orbit__item {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 46px;
  height: 46px;
  display: block;
  will-change: transform;
  transition: none;
  transform-origin: center center;
  pointer-events: none;
}

.tech-orbit--physics .tech-orbit__bubble {
  pointer-events: auto;
}

.tech-orbit--physics .tech-orbit__float {
  animation: none;
  transform: none;
}

.tech-orbit.is-dragging .tech-orbit__float {
  animation: none;
}

.tech-orbit::-webkit-scrollbar {
  width: 6px;
}

.tech-orbit::-webkit-scrollbar-thumb {
  background: rgba(0, 200, 150, 0.35);
  border-radius: 999px;
}

.tech-orbit__item {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.tech-orbit__float {
  animation: tech-orbit-drift var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.tech-orbit__bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 24%;
  cursor: grab;
  touch-action: none;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.tech-orbit__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.95;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1),
    filter 0.3s ease,
    opacity 0.3s ease;
}

.tech-orbit__item:hover .tech-orbit__icon,
.tech-orbit__item:focus-within .tech-orbit__icon {
  opacity: 1;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--accent) 70%, transparent));
}

.tech-orbit__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px) scale(0.92);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #f0f2f5;
  background: rgba(12, 14, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.tech-orbit.is-dragging .tech-orbit__bubble {
  cursor: grabbing;
}

.tech-orbit__item.is-active {
  z-index: 50;
}

.tech-orbit__item:hover,
.tech-orbit__item:focus-within {
  z-index: 20;
}

.tech-orbit--physics .tech-orbit__item:hover,
.tech-orbit--physics .tech-orbit__item:focus-within {
  z-index: 20;
}

.tech-orbit--physics .tech-orbit__item:hover .tech-orbit__bubble,
.tech-orbit--physics .tech-orbit__item:focus-within .tech-orbit__bubble,
.tech-orbit--physics .tech-orbit__item.is-active .tech-orbit__bubble {
  transform: scale(1.12);
  border-color: color-mix(in srgb, var(--accent) 55%, rgba(255, 255, 255, 0.2));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
}

.tech-orbit--physics .tech-orbit__item.is-active .tech-orbit__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.tech-orbit__item:hover .tech-orbit__float,
.tech-orbit__item:focus-within .tech-orbit__float {
  animation-play-state: paused;
}

.tech-orbit__item:hover .tech-orbit__bubble,
.tech-orbit__item:focus-within .tech-orbit__bubble,
.tech-orbit__bubble:focus-visible {
  transform: scale(1.2) translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 55%, rgba(255, 255, 255, 0.2));
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--accent) 28%, rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
}

.tech-orbit__item:hover .tech-orbit__icon,
.tech-orbit__item:focus-within .tech-orbit__icon {
  transform: scale(1.08);
}

.tech-orbit__item:hover .tech-orbit__label,
.tech-orbit__item:focus-within .tech-orbit__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

@keyframes tech-orbit-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }
  33% {
    transform: translate3d(2px, -9px, 0) rotate(1deg);
  }
  66% {
    transform: translate3d(-2px, -5px, 0) rotate(0.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-orbit {
    transition: none;
  }

  .tech-orbit__float {
    animation: none;
  }

  .tech-orbit__item:hover .tech-orbit__bubble,
  .tech-orbit__item:focus-within .tech-orbit__bubble {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .home-terminal__body--orbit {
    min-height: 280px;
    max-height: 360px;
  }

  .tech-orbit {
    max-height: 328px;
    grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
  }

  .tech-orbit__bubble {
    width: 42px;
    height: 42px;
  }

  .tech-orbit__icon {
    width: 22px;
    height: 22px;
  }
}

/* Section 3: Why Us */
.home-why {
  padding: 80px 24px;
  background: #13151a;
}

.home-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.home-section-head__title {
  font-family: var(--th-font-family);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
}

.home-section-head__sub {
  margin: 0;
  font-size: 14px;
  color: #8a8f9e;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-why-card {
  padding: 28px 24px;
  background: #0b0c0e;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.home-why-card::before {
  content: '';
  position: absolute;
}

.home-why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.home-why-card--1 .home-why-card__icon {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.18), rgba(0, 200, 150, 0.05));
}

.home-why-card--2 .home-why-card__icon {
  background: linear-gradient(135deg, rgba(123, 110, 246, 0.18), rgba(123, 110, 246, 0.05));
}

.home-why-card--3 .home-why-card__icon {
  background: linear-gradient(135deg, rgba(249, 112, 96, 0.18), rgba(249, 112, 96, 0.05));
}

.home-why-card--4 .home-why-card__icon {
  background: linear-gradient(135deg, rgba(250, 199, 117, 0.18), rgba(250, 199, 117, 0.05));
}

.home-why-card__icon .ti {
  font-size: 22px;
  color: #fff;
}

.home-why-card__title {
  font-family: var(--th-font-family);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.home-why-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #8a8f9e;
}

.home-why-card--1:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 150, 0.5);
  box-shadow: 0 12px 32px rgba(0, 200, 150, 0.1);
}

.home-why-card--2:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 110, 246, 0.5);
  box-shadow: 0 12px 32px rgba(123, 110, 246, 0.1);
}

.home-why-card--3:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 112, 96, 0.5);
  box-shadow: 0 12px 32px rgba(249, 112, 96, 0.1);
}

.home-why-card--4:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 199, 117, 0.5);
  box-shadow: 0 12px 32px rgba(250, 199, 117, 0.1);
}

/* Section 4: Services */ 
.home-services {
  padding: 80px 24px;
  background: #0b0c0e;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-service-card {
  padding: 36px 28px;
  background: #13151a;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.home-service-card::before {
  content: '';
  position: absolute;
}

.home-service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.home-service-card--tech .home-service-card__icon {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.18), rgba(0, 200, 150, 0.05));
}

.home-service-card--creative .home-service-card__icon {
  background: linear-gradient(135deg, rgba(123, 110, 246, 0.18), rgba(123, 110, 246, 0.05));
}

.home-service-card--consult .home-service-card__icon {
  background: linear-gradient(135deg, rgba(249, 112, 96, 0.18), rgba(249, 112, 96, 0.05));
}

.home-service-card__icon .ti {
  font-size: 26px;
  color: #fff;
}

.home-service-card__title {
  font-family: var(--th-font-family);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.home-service-card__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #8a8f9e;
}

.home-service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #00c896 !important;
  text-decoration: none !important;
}

.home-service-card__link:hover {
  text-decoration: underline !important;
}

.home-service-card--tech:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 150, 0.45);
  box-shadow: 0 12px 32px rgba(0, 200, 150, 0.1);
}

.home-service-card--creative:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 110, 246, 0.45);
  box-shadow: 0 12px 32px rgba(123, 110, 246, 0.1);
}

.home-service-card--consult:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 112, 96, 0.45);
  box-shadow: 0 12px 32px rgba(249, 112, 96, 0.1);
}

/* Section 5: Solutions */ 
.home-solutions {
  padding: 80px 24px;
  background: #13151a;
}

.home-solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.home-solution-card {
  background: #0b0c0e;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.home-solution-card__banner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.home-solution-card--thinkerp .home-solution-card__banner {
  height: 108px;
  background: linear-gradient(145deg, #0c2348 0%, #081a33 55%, #0b0c0e 100%);
}

.home-solution-card__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.home-solution-card--thinkerp .home-solution-card__link {
  color: #7cb518 !important;
}

.home-solution-card__banner .ti {
  font-size: 28px;
  color: #fff;
}

.home-solution-card__body {
  padding: 20px;
}

.home-solution-card__title {
  font-family: var(--th-font-family);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.home-solution-card__text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #8a8f9e;
}

.home-solution-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #00c896 !important;
  text-decoration: none !important;
}

.home-solution-card__link:hover {
  text-decoration: underline !important;
}

.home-solutions__footer {
  margin-top: 32px;
  text-align: center;
}

.home-solutions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--th-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0 !important;
  text-decoration: none !important;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.home-solutions__btn:hover {
  border-color: #00c896;
  color: #00c896 !important;
  background: rgba(0, 200, 150, 0.05);
}

/* Section 6: CTA */ 
.home-cta {
  padding: 64px 24px 80px;
  background: #0b0c0e;
}

.home-cta__panel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 24px;
  border: 1px solid rgba(0, 200, 150, 0.15);
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.08), rgba(123, 110, 246, 0.08));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-cta__bubble {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.04);
  pointer-events: none;
}

.home-cta__title {
  font-family: var(--th-font-family);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
  max-width: 480px;
}

.home-cta__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #c0c0c0;
  max-width: 480px;
}

.home-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: var(--th-font-family);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.home-cta__btn--primary {
  background: #00c896;
  color: #0b0c0e !important;
}

.home-cta__btn--ghost {
  background: transparent;
  color: #f0f0f0 !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.home-cta__btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.home-cta__btn--ghost:hover {
  border-color: #00c896;
  color: #00c896 !important;
}

@media (max-width: 1024px) {
  .home-service__grid {
    grid-template-columns: 1fr;
  }
  .home-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page-home .home-service {
    padding: 64px 20px 72px;
  }

  .home-why,
  .home-services,
  .home-solutions,
  .home-cta {
    padding: 64px 20px 72px;
  }
  .home-why__grid,
  .home-services__grid {
    grid-template-columns: 1fr;
  }
  .home-cta__panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
  }
  .home-cta__actions {
    width: 100%;
  }
  .home-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

